pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>qc</artifactId>
  6. <groupId>com.lantone.qc</groupId>
  7. <version>1.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>public</artifactId>
  11. <name>public</name>
  12. <!-- FIXME change it to the project's website -->
  13. <url>http://www.example.com</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.google.code.gson</groupId>
  22. <artifactId>gson</artifactId>
  23. <version>2.8.6</version>
  24. <!--<scope>provided</scope>-->
  25. </dependency>
  26. <dependency>
  27. <groupId>com.google.collections</groupId>
  28. <artifactId>google-collections</artifactId>
  29. <version>1.0</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <finalName>public</finalName>
  34. </build>
  35. </project>