You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
924 B

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>export</groupId>
  4. <artifactId>export</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <sourceDirectory>src</sourceDirectory>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.8.1</version>
  12. <configuration>
  13. <release>14</release>
  14. </configuration>
  15. </plugin>
  16. </plugins>
  17. </build>
  18. <dependencies>
  19. <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
  20. <dependency>
  21. <groupId>com.googlecode.json-simple</groupId>
  22. <artifactId>json-simple</artifactId>
  23. <version>1.1.1</version>
  24. </dependency>
  25. </dependencies>
  26. </project>