rpki-validator-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.ripe.rpki</groupId> <artifactId>rpki-validator-cli</artifactId> <version>2.27</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>rpki-validator-cli</artifactId> <packaging>jar</packaging> <name>RPKI Validator Command Line Interface</name> <parent> <groupId>net.ripe.rpki</groupId> <artifactId>rpki-validator</artifactId> <version>2.27</version> </parent> <!-- ====================================================================== --> <!-- Dependencies --> <!-- ====================================================================== --> <dependencies> <!-- our stuff --> <dependency> <groupId>net.ripe.rpki</groupId> <artifactId>rpki-commons</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <!-- 3rd party --> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <!-- Guava uses this, which chokes the scala compiler unless its available. --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/jar-with-dependencies.xml</descriptor> <descriptor>src/main/assembly/bin.xml</descriptor> </descriptors> <archive> <manifest> <mainClass> net.ripe.rpki.validator.cli.Main </mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- append to the packaging phase. --> <goals> <goal>single</goal> <!-- goals == mojos --> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <configuration> <strictCheck>true</strictCheck> <header>../LICENSE.txt</header> <excludes> <exclude>**/*.tal</exclude> <exclude>**/*.txt</exclude> <exclude>pom.xslt</exclude> <exclude>.pregenerated-test-key-pairs.keystore</exclude> </excludes> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> </project>