|
@@ -17,6 +17,10 @@
|
|
<commons-lang3.version>3.8.1</commons-lang3.version>
|
|
<commons-lang3.version>3.8.1</commons-lang3.version>
|
|
<fastjson.version>1.2.62</fastjson.version>
|
|
<fastjson.version>1.2.62</fastjson.version>
|
|
<gson.version>2.8.5</gson.version>
|
|
<gson.version>2.8.5</gson.version>
|
|
|
|
+ <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
|
|
|
+ <commons-codec.version>1.11</commons-codec.version>
|
|
|
|
+ <poi.version>4.0.1</poi.version>
|
|
|
|
+ <commons-beanutils.version>1.9.3</commons-beanutils.version>
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
@@ -59,26 +63,41 @@
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<artifactId>commons-codec</artifactId>
|
|
- <version>1.11</version>
|
|
|
|
|
|
+ <version>${commons-codec.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
<!-- poi excel -->
|
|
<!-- poi excel -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<artifactId>poi</artifactId>
|
|
- <version>4.0.1</version>
|
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
- <version>4.0.1</version>
|
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
- <version>1.9.3</version>
|
|
|
|
|
|
+ <version>${commons-beanutils.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <!-- 指定jdk版本 -->
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <source>${java.version}</source><!-- 源码的编译器版本 -->
|
|
|
|
+ <target>${java.version}</target><!-- class的编译器版本 -->
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
</project>
|
|
</project>
|