pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.agent</groupId>
  6. <artifactId>ali-device-regist-4g</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Archetype - ali-device-regist-4g</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <encoding>UTF-8</encoding>
  12. <java-version>1.8</java-version>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.eclipse.paho</groupId>
  20. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  21. <version>1.2.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.eclipse.californium</groupId>
  25. <artifactId>californium-core</artifactId>
  26. <version>2.0.0-M17</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>fastjson</artifactId>
  31. <version>1.2.61</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.guava</groupId>
  35. <artifactId>guava</artifactId>
  36. <version>27.0.1-jre</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.netty</groupId>
  40. <artifactId>netty-all</artifactId>
  41. <version>4.1.76.Final</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.hutool</groupId>
  45. <artifactId>hutool-all</artifactId>
  46. <version>5.7.22</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.zaxxer</groupId>
  50. <artifactId>HikariCP</artifactId>
  51. <version>3.4.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.slf4j</groupId>
  55. <artifactId>slf4j-api</artifactId>
  56. <version>1.7.36</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>ch.qos.logback</groupId>
  60. <artifactId>logback-classic</artifactId>
  61. <version>1.2.11</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. <version>5.1.33</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.commons</groupId>
  70. <artifactId>commons-lang3</artifactId>
  71. <version>3.9</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-codec</groupId>
  75. <artifactId>commons-codec</artifactId>
  76. <version>1.13</version>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <configuration>
  85. <source>1.8</source>
  86. <target>1.8</target>
  87. <encoding>UTF-8</encoding>
  88. </configuration>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-assembly-plugin</artifactId>
  93. <version>2.5.3</version>
  94. <configuration>
  95. <appendAssemblyId>false</appendAssemblyId>
  96. <descriptorRefs>
  97. <descriptorRef>jar-with-dependencies</descriptorRef>
  98. </descriptorRefs>
  99. <archive>
  100. <manifest>
  101. <!-- 此处指定main方法入口的class -->
  102. <mainClass>regist.Regist</mainClass>
  103. </manifest>
  104. </archive>
  105. </configuration>
  106. <executions>
  107. <execution>
  108. <id>make-assembly</id>
  109. <phase>package</phase>
  110. <goals>
  111. <goal>assembly</goal>
  112. </goals>
  113. </execution>
  114. </executions>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>