pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.syjy</groupId>
  7. <artifactId>windCollect</artifactId>
  8. <version>1.9</version>
  9. <description>
  10. </description>
  11. <repositories>
  12. <repository>
  13. <id>syjy-repos</id>
  14. <name>syjy Repository</name>
  15. <url>http://49.4.68.219:8888/nexus/content/groups/public/</url>
  16. <releases>
  17. <enabled>true</enabled>
  18. </releases>
  19. <snapshots>
  20. <enabled>true</enabled>
  21. </snapshots>
  22. </repository>
  23. </repositories>
  24. <properties>
  25. <java.version>1.8</java.version>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. </properties>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <configuration>
  35. <source>1.8</source>
  36. <target>1.8</target>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-shade-plugin</artifactId>
  42. <version>2.4.3</version>
  43. <executions>
  44. <execution>
  45. <phase>package</phase>
  46. <goals>
  47. <goal>shade</goal>
  48. </goals>
  49. <configuration>
  50. <createDependencyReducedPom>false</createDependencyReducedPom>
  51. <transformers>
  52. <transformer
  53. implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  54. <mainClass>StartPro2File</mainClass>
  55. </transformer>
  56. </transformers>
  57. </configuration>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. <dependencies>
  64. <dependency>
  65. <groupId>cn.hutool</groupId>
  66. <artifactId>hutool-poi</artifactId>
  67. <version>4.6.11</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-lang3</artifactId>
  72. <version>3.2.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-ooxml</artifactId>
  77. <version>3.17</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>wei.yigulu</groupId>
  81. <artifactId>protocol-all</artifactId>
  82. <version>2.3.16</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.googlecode.aviator</groupId>
  86. <artifactId>aviator</artifactId>
  87. <version>5.0.0</version>
  88. </dependency>
  89. <!-- 处理excel和上面功能是一样的-->
  90. <dependency>
  91. <groupId>net.sourceforge.jexcelapi</groupId>
  92. <artifactId>jxl</artifactId>
  93. <version>2.6.10</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-lang</groupId>
  97. <artifactId>commons-lang</artifactId>
  98. <version>2.6</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-codec</groupId>
  102. <artifactId>commons-codec</artifactId>
  103. <version>1.11</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. <version>1.16.20</version>
  109. </dependency>
  110. </dependencies>
  111. </project>