pom.xml 795 B

123456789101112131415161718192021222324
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.example</groupId>
  7. <artifactId>tcp-nest-bridge</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <!-- Specify the Java version Maven should use for compiling -->
  11. <maven.compiler.source>21</maven.compiler.source>
  12. <maven.compiler.target>21</maven.compiler.target>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.json</groupId>
  17. <artifactId>json</artifactId>
  18. <version>20231013</version>
  19. </dependency>
  20. </dependencies>
  21. </project>