pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <build>
  10.         <plugins>
  11.             <plugin>
  12.                 <groupId>org.apache.maven.plugins</groupId>
  13.                 <artifactId>maven-jar-plugin</artifactId>
  14.                 <configuration>
  15.                     <archive>
  16.                         <manifest>
  17.                             <mainClass>com.wzkj.zhai.contact.Application</mainClass>   //主程序入口类,可以按住control,单机定位到该类
  18.                         </manifest>
  19.                     </archive>
  20.                 </configuration>
  21.             </plugin>
  22.         </plugins>
  23.     </build>
  24. <properties>
  25. <maven.compiler.source>1.8</maven.compiler.source>
  26. <maven.compiler.target>1.8</maven.compiler.target>
  27. <java.version>11</java.version>
  28. </properties>
  29. <repositories>
  30. <repository>
  31. <id>com.e-iceblue</id>
  32. <name>e-iceblue</name>
  33. <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
  34. </repository>
  35. </repositories>
  36. <dependencies>
  37. <dependency>
  38. <groupId>javax.xml.bind</groupId>
  39. <artifactId>jaxb-api</artifactId>
  40. <version>2.3.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId> e-iceblue </groupId>
  44. <artifactId>spire.doc.free</artifactId>
  45. <version>3.9.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-lang3</artifactId>
  50. <version>3.3.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-io</groupId>
  54. <artifactId>commons-io</artifactId>
  55. <version>2.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-cli</groupId>
  59. <artifactId>commons-cli</artifactId>
  60. <version>1.0</version>
  61. </dependency>
  62. </dependencies>
  63. </project>