pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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.its</groupId>
  6. <artifactId>common</artifactId>
  7. <version>1.0</version>
  8. <name>its-common</name>
  9. <description>ITS project common library</description>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <java.version>1.8</java.version>
  13. <org.projectlombok.version>1.18.20</org.projectlombok.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <start-class>com.its.common.ItsCommonApplication</start-class>
  19. <maven.test.skip>true</maven.test.skip>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <version>1.18.4</version>
  26. <scope>compile</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-log4j12</artifactId>
  31. <version>1.7.18</version>
  32. </dependency>
  33. <!-- for FileUtil: Serializer -->
  34. <dependency>
  35. <groupId>com.squareup.retrofit</groupId>
  36. <artifactId>converter-simplexml</artifactId>
  37. <version>1.6.1</version>
  38. </dependency>
  39. <!-- for JsonUtil, ReflectUtil: JSON -->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>fastjson</artifactId>
  43. <version>1.2.83</version>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. </build>
  48. <!-- <distributionManagement>-->
  49. <!-- <repository>-->
  50. <!-- <id>maven-releases</id>-->
  51. <!-- <name>Nexus Releases Repository</name>-->
  52. <!-- <url>http://192.168.0.71:8081/repository/maven-releases/</url>-->
  53. <!-- </repository>-->
  54. <!-- <snapshotRepository>-->
  55. <!-- <id>maven-snapshots</id>-->
  56. <!-- <name>snapshots</name>-->
  57. <!-- <url>http://192.168.0.71:8081/repository/maven-snapshots/</url>-->
  58. <!-- </snapshotRepository>-->
  59. <!-- </distributionManagement>-->
  60. </project>