pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jzg</groupId>
  6. <artifactId>insurance</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>quotation-yongcheng</artifactId>
  10. <!-- <packaging>jar</packaging>-->
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jzg</groupId>
  14. <artifactId>quotation-commons</artifactId>
  15. <version>1.0-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.fasterxml.jackson.dataformat</groupId>
  20. <artifactId>jackson-dataformat-xml</artifactId>
  21. <version>2.9.0</version>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>com.jzg</groupId>-->
  25. <!-- <artifactId>quotation-summary</artifactId>-->
  26. <!-- <version>1.0-SNAPSHOT</version>-->
  27. <!-- <scope>compile</scope>-->
  28. <!-- </dependency>-->
  29. </dependencies>
  30. <build>
  31. <finalName>quotation-yongcheng</finalName>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <configuration>
  37. <source>16</source>
  38. <target>16</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>