123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <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
- http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.example</groupId>
- <artifactId>tcp-nest-bridge</artifactId>
- <version>1.0-SNAPSHOT</version>
- <properties>
- <!-- Specify the Java version Maven should use for compiling -->
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- </properties>
- <dependencies>
- <!-- JSON dependency -->
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>20231013</version>
- </dependency>
- <!-- SourceAFIS dependency -->
- <dependency>
- <groupId>com.machinezoo.sourceafis</groupId>
- <artifactId>sourceafis</artifactId>
- <version>3.18.1</version>
- </dependency>
- <!-- pom.xml -->
- <dependency>
- <groupId>org.msgpack</groupId>
- <artifactId>msgpack-core</artifactId>
- <version>0.9.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <phase>compile</phase> <!-- Ensure it's part of the compile phase -->
- <goals>
- <goal>java</goal>
- </goals>
- <configuration>
- <mainClass>com.example.Main</mainClass>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|