pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-jar-plugin</artifactId>
  53. <version>2.6</version>
  54. <configuration>
  55. <archive>
  56. <manifest>
  57. <addClasspath>true</addClasspath>
  58. <classpathPrefix>lib/</classpathPrefix>
  59. <mainClass>com.wzkj.zhai.contact.Application</mainClass>
  60. </manifest>
  61. </archive>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-dependency-plugin</artifactId>
  67. <version>2.10</version>
  68. <executions>
  69. <execution>
  70. <id>copy-dependencies</id>
  71. <phase>package</phase>
  72. <goals>
  73. <goal>copy-dependencies</goal>
  74. </goals>
  75. <configuration>
  76. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  77. </configuration>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>