114 lines
3.8 KiB
XML
114 lines
3.8 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>dhp</artifactId>
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
<version>1.2.5-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>dhp-shade-package</artifactId>
|
|
<description>This module create a jar of all module dependencies</description>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer>
|
|
<mainClass>eu.dnetlib.dhp.oa.dedup.SparkCreateSimRels</mainClass>
|
|
</transformer>
|
|
<transformer />
|
|
<transformer>
|
|
<resource>META-INF/cxf/bus-extensions.txt</resource>
|
|
</transformer>
|
|
</transformers>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/maven/**</exclude>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com</pattern>
|
|
<shadedPattern>repackaged.com.google.common</shadedPattern>
|
|
<includes>
|
|
<include>com.google.common.**</include>
|
|
</includes>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.28</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>5.6.1</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>3.3.3</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>byte-buddy</artifactId>
|
|
<groupId>net.bytebuddy</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>byte-buddy-agent</artifactId>
|
|
<groupId>net.bytebuddy</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
<version>3.3.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<site>
|
|
<id>DHPSite</id>
|
|
<url>${dhp.site.stage.path}/dhp-common</url>
|
|
</site>
|
|
</distributionManagement>
|
|
</project>
|