pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.wzkj.zhai</groupId>
  7. <artifactId>contact</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>1.8</maven.compiler.source>
  11. <maven.compiler.target>1.8</maven.compiler.target>
  12. <java.version>11</java.version>
  13. </properties>
  14. <repositories>
  15. <repository>
  16. <id>com.e-iceblue</id>
  17. <name>e-iceblue</name>
  18. <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
  19. </repository>
  20. </repositories>
  21. <dependencies>
  22. <dependency>
  23. <groupId>javax.xml.bind</groupId>
  24. <artifactId>jaxb-api</artifactId>
  25. <version>2.3.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId> e-iceblue </groupId>
  29. <artifactId>spire.doc.free</artifactId>
  30. <version>3.9.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.commons</groupId>
  34. <artifactId>commons-lang3</artifactId>
  35. <version>3.3.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-io</groupId>
  39. <artifactId>commons-io</artifactId>
  40. <version>2.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-cli</groupId>
  44. <artifactId>commons-cli</artifactId>
  45. <version>1.0</version>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <!--使用Maven编译可执行的jar -->
  50. <plugins>
  51. <plugin>
  52. <artifactId/>
  53. <configuration>
  54. <appendAssemblyId>false</appendAssemblyId>
  55. <descriptorRefs>
  56. <descriptorRef>jar-with-dependencies</descriptorRef>
  57. </descriptorRefs>
  58. <archive>
  59. <manifest>
  60. <mainClass>com.wzkj.zhai.contact.Application</mainClass>
  61. </manifest>
  62. </archive>
  63. </configuration>
  64. <executions>
  65. <execution>
  66. <id>make-assembly</id>
  67. <phase>package</phase>
  68. <goals>
  69. <goal>assembly</goal>
  70. </goals>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>