pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <parent>
  6. <artifactId>safe-produce</artifactId>
  7. <groupId>com.rongwei</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.rongwei</groupId>
  12. <artifactId>cx-aps</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <modules>
  15. <module>cx-aps-server</module>
  16. <module>cx-aps-common</module>
  17. <module>cx-aps-entity</module>
  18. </modules>
  19. <properties>
  20. <mapper.version>3.4.0</mapper.version>
  21. <maven.compile.source>1.8</maven.compile.source>
  22. <maven.compile.target>1.8</maven.compile.target>
  23. <fastjson.version>1.2.31</fastjson.version>
  24. </properties>
  25. <packaging>pom</packaging>
  26. <dependencies>
  27. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <version>1.16.14</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>${fastjson.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </project>