作者 朱兆平

后端导出excel

正在显示 1 个修改的文件 包含 13 行增加18 行删除
@@ -57,37 +57,27 @@ @@ -57,37 +57,27 @@
57 <scope>compile</scope> 57 <scope>compile</scope>
58 </dependency> 58 </dependency>
59 59
60 - <!--excel 导入所需要的包 --> 60 + <!--excel 导入所需要的包,以下POM不传git 给舱单统计服务和代理人出港统计服务自用 -->
61 <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> 61 <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
62 - <dependency>  
63 - <groupId>org.apache.poi</groupId>  
64 - <artifactId>poi</artifactId>  
65 - <version>4.1.0</version>  
66 - </dependency> 62 + <!-- excel导出-->
67 <dependency> 63 <dependency>
68 <groupId>org.apache.poi</groupId> 64 <groupId>org.apache.poi</groupId>
69 <artifactId>poi-ooxml</artifactId> 65 <artifactId>poi-ooxml</artifactId>
70 <version>4.1.0</version> 66 <version>4.1.0</version>
71 </dependency> 67 </dependency>
72 -  
73 <dependency> 68 <dependency>
74 - <groupId>org.springframework</groupId>  
75 - <artifactId>spring-context</artifactId>  
76 - <version>4.2.4.RELEASE</version> 69 + <groupId>org.apache.tomcat.embed</groupId>
  70 + <artifactId>tomcat-embed-core</artifactId>
  71 + <version>9.0.35</version>
  72 + <scope>compile</scope>
77 </dependency> 73 </dependency>
78 -  
79 <dependency> 74 <dependency>
80 <groupId>org.springframework</groupId> 75 <groupId>org.springframework</groupId>
81 <artifactId>spring-web</artifactId> 76 <artifactId>spring-web</artifactId>
82 - <version>5.2.0.BUILD-SNAPSHOT</version>  
83 - <scope>compile</scope>  
84 - </dependency>  
85 - <dependency>  
86 - <groupId>org.apache.tomcat.embed</groupId>  
87 - <artifactId>tomcat-embed-core</artifactId>  
88 - <version>9.0.56</version> 77 + <version>5.3.15</version>
89 <scope>compile</scope> 78 <scope>compile</scope>
90 </dependency> 79 </dependency>
  80 + <!--excel 导入所需要的包,以上POM不传git 给舱单统计服务和代理人出港统计服务自用 -->
91 </dependencies> 81 </dependencies>
92 82
93 <build> 83 <build>
@@ -101,6 +91,11 @@ @@ -101,6 +91,11 @@
101 <target>1.8</target> 91 <target>1.8</target>
102 </configuration> 92 </configuration>
103 </plugin> 93 </plugin>
  94 + <plugin>
  95 + <groupId>org.apache.maven.plugins</groupId>
  96 + <artifactId>maven-deploy-plugin</artifactId>
  97 + <version>2.8.2</version>
  98 + </plugin>
104 </plugins> 99 </plugins>
105 </build> 100 </build>
106 101