| POM: |
Show
hide
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.s3curitybug</groupId>
<artifactId>similarity-uniform-fuzzy-hash</artifactId>
<name>${project.artifactId}</name>
<version>1.8.3</version>
<description>Similarity Uniform Fuzzy Hash is a tool that allows to accurately and efficiently compute
the similarity between two files (or sets of bytes) as a 0 to 1 score.
For that purpose, it first computes for each file a Context Triggered Piecewise Hash (CTPH),
also known as fuzzy hash, and then compares the hashes.</description>
<url>https://github.com/s3curitybug/similarity-uniform-fuzzy-hash</url>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/s3curitybug/similarity-uniform-fuzzy-hash/issues</url>
</issueManagement>
<inceptionYear>2017</inceptionYear>
<developers>
<developer>
<id>sherl0ck</id>
<name>Juan Jose Torres Garcia</name>
<email>s3curitybug@gmail.com</email>
<url>https://github.com/s3curitybug/</url>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/s3curitybug/similarity-uniform-fuzzy-hash.git</connection>
<developerConnection>scm:git:ssh://github.com:s3curitybug/similarity-uniform-fuzzy-hash.git</developerConnection>
<url>https://github.com/s3curitybug/similarity-uniform-fuzzy-hash/tree/master</url>
</scm>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<targetPath>META-INF</targetPath>
<directory>${project.basedir}</directory>
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
</resource>
</resources>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>${addClasspath}</addClasspath>
<classpathPrefix>${dependenciesFolder}</classpathPrefix>
<mainClass>${mainClass}</mainClass>
</manifest>
<manifestEntries>
<Built-By>${builtBy}</Built-By>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeScope>compile</includeScope>
<outputDirectory>${project.build.directory}/${dependenciesFolder}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>${shadePhase}</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>${mainClass}</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
<configuration>
<archive>
<manifestEntries>
<Built-By>${builtBy}</Built-By>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<archive>
<manifestEntries>
<Built-By>${builtBy}</Built-By>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>${gpgPhase}</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>libsOutside</id>
<properties>
<shadePhase>none</shadePhase>
<addClasspath>true</addClasspath>
<gpgPhase>none</gpgPhase>
</properties>
</profile>
<profile>
<id>libsInside</id>
<properties>
<shadePhase>package</shadePhase>
<addClasspath>false</addClasspath>
<gpgPhase>none</gpgPhase>
</properties>
</profile>
<profile>
<id>libsOutsideSign</id>
<properties>
<shadePhase>none</shadePhase>
<addClasspath>true</addClasspath>
<gpgPhase>verify</gpgPhase>
</properties>
</profile>
<profile>
<id>libsInsideSign</id>
<properties>
<shadePhase>package</shadePhase>
<addClasspath>false</addClasspath>
<gpgPhase>verify</gpgPhase>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<mainClass>com.github.s3curitybug.similarityuniformfuzzyhash.Main</mainClass>
<java.version>1.8</java.version>
<builtBy>s3curitybug@gmail.com</builtBy>
<dependenciesFolder>lib</dependenciesFolder>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
|