12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <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>
- <!-- For JSON as well?? -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.13.0</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>
|