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">
<parent>
<artifactId>bitsensor-plugin</artifactId>
<groupId>io.bitsensor.plugins</groupId>
<version>2.3.0-RC1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bitsensor-blocking</artifactId>
<name>BitSensor ~ Blocking</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<shadeSourcesContent>true</shadeSourcesContent>
<createSourcesJar>true</createSourcesJar>
<createDependencyReducedPom>true</createDependencyReducedPom>
<artifactSet>
<excludes>
<exclude>org.springframework:spring-aop</exclude>
<exclude>org.springframework:spring-beans</exclude>
<exclude>org.springframework:spring-context</exclude>
<exclude>org.springframework:spring-core</exclude>
<exclude>org.springframework:spring-expression</exclude>
<exclude>io.bitsensor:proto</exclude>
<exclude>com.google*:*</exclude>
</excludes>
</artifactSet>
<transformers>
<transformer />
<transformer />
</transformers>
<relocations>
<relocation>
<pattern>com.rabbitmq</pattern>
<shadedPattern>io.bitsensor.plugins.shaded.com.rabbitmq</shadedPattern>
</relocation>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>io.bitsensor.plugins.shaded.com.fasterxml.jackson</shadedPattern>
</relocation>
<relocation>
<pattern>com.google</pattern>
<shadedPattern>io.bitsensor.proto.shaded.com.google</shadedPattern>
</relocation>
<relocation>
<pattern>org.springframework.amqp</pattern>
<shadedPattern>io.bitsensor.plugins.shaded.org.springframework.amqp</shadedPattern>
</relocation>
<relocation>
<pattern>org.springframework</pattern>
<shadedPattern>io.bitsensor.plugins.shaded.org.springframework</shadedPattern>
<excludes>
<exclude>org.springframework.stereotype.Component</exclude>
<exclude>org.springframework.context.event.EventListener</exclude>
</excludes>
</relocation>
</relocations>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.bitsensor.plugins</groupId>
<artifactId>bitsensor-core</artifactId>
<version>2.3.0-RC1</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>chlorine-finder</artifactId>
<groupId>io.dataapps.chlorine</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit-test</artifactId>
<version>1.7.3.RELEASE</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-all</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
<exclusion>
<artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.bitsensor.plugins</groupId>
<artifactId>bitsensor-its-collector</artifactId>
<version>2.3.0-RC1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>spring-test</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>jcl-over-slf4j</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.22</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<version>2.0.0.0</version>
<scope>test</scope>
</dependency>
<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>
</project>
|