Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>bitsensor-plugin</artifactId>
<groupId>io.bitsensor.plugins</groupId>
<version>2.2.0-RC4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bitsensor-blocking</artifactId>
<name>BitSensor ~ Blocking</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>io.bitsensor.plugins</groupId>
<artifactId>bitsensor-core</artifactId>
</dependency>
<dependency>
<groupId>io.bitsensor</groupId>
<artifactId>lib-entity</artifactId>
</dependency>
<dependency>
<groupId>io.bitsensor.plugins</groupId>
<artifactId>bitsensor-http</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.bitsensor.plugins</groupId>
<artifactId>bitsensor-its-collector</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Maven shade plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>uber</shadedClassifierName>
<minimizeJar>true</minimizeJar>
<relocations>
<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>
</project>
|