* [FIX-#6412]Task Class Load Err * Task Class Load Err
This commit is contained in:
parent
a9338fe697
commit
f60dc3eb2a
|
|
@ -49,6 +49,10 @@
|
|||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
|
|
@ -272,6 +276,10 @@
|
|||
<artifactId>jasper-compiler</artifactId>
|
||||
<groupId>tomcat</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<groupId>commons-lang</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
|
|
|||
7
pom.xml
7
pom.xml
|
|
@ -84,6 +84,7 @@
|
|||
<commons.httpclient>3.0.1</commons.httpclient>
|
||||
<commons.beanutils.version>1.9.4</commons.beanutils.version>
|
||||
<commons.configuration.version>1.10</commons.configuration.version>
|
||||
<commons.lang.version>2.6</commons.lang.version>
|
||||
<commons.email.version>1.5</commons.email.version>
|
||||
<poi.version>4.1.2</poi.version>
|
||||
<javax.servlet.api.version>3.1.0</javax.servlet.api.version>
|
||||
|
|
@ -473,6 +474,12 @@
|
|||
<version>${commons.configuration.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>${commons.lang.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue