randomcutforest-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>software.amazon.randomcutforest</groupId> <artifactId>randomcutforest-examples</artifactId> <version>4.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>software.amazon.randomcutforest</groupId> <artifactId>randomcutforest-parent</artifactId> <version>4.3.0</version> </parent> <artifactId>randomcutforest-examples</artifactId> <packaging>jar</packaging> <dependencies> <dependency> <groupId>software.amazon.randomcutforest</groupId> <artifactId>randomcutforest-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>software.amazon.randomcutforest</groupId> <artifactId>randomcutforest-parkservices</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>software.amazon.randomcutforest</groupId> <artifactId>randomcutforest-testutils</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.16.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.16.0</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-core</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-runtime</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.2.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.amazon.randomcutforest.examples.Main</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> </project>