All checks were successful
Locusworks Team/hash-validator/pipeline/head This commit looks good
98 lines
2.5 KiB
XML
98 lines
2.5 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>net.locusworks</groupId>
|
|
<artifactId>hash-validator</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>hash-validator</name>
|
|
<description>Validates Hashes</description>
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<nexus.repo>https://nexus.locusworks.net</nexus.repo>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>net.locusworks.hashvalidator.Entry</mainClass>
|
|
</transformer>
|
|
</transformers>
|
|
<finalName>HashValidator</finalName>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.14</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.beust</groupId>
|
|
<artifactId>jcommander</artifactId>
|
|
<version>1.78</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>nexus-snapshot</id>
|
|
<url>${nexus.repo}/repository/locusworks-snapshot/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>nexus-release</id>
|
|
<url>${nexus.repo}/repository/locusworks-release/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>locusworks-public</id>
|
|
<name>locusworks-public</name>
|
|
<url>${nexus.repo}/repository/locusworks-public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>locusworks-public</id>
|
|
<url>${nexus.repo}/repository/locusworks-public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project> |