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>corbel</artifactId>
<groupId>io.corbel</groupId>
<version>1.38.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>rem-acl</artifactId>
<name>rem-acl</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>ch.qos.logback:logback-classic</artifact>
<excludes>
<exclude>org/slf4j/impl/**</exclude>
</excludes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>
<groupId>com.redhat.rcm.maven.plugin</groupId>
<artifactId>buildmetadata-maven-plugin</artifactId>
<version>${buildmetadata-maven-plugin.version}</version>
<configuration>
<addProjectInfo>true</addProjectInfo>
<addScmInfo>true</addScmInfo>
<connectionType>developerConnection</connectionType>
<buildDatePattern>dd/MM/yyyy HH:mm:ss z</buildDatePattern>
<propertiesOutputFile>${project.artifactId}-plugin-build.properties</propertiesOutputFile>
</configuration>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<configuration>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.build.directory}</directory>
<include>${project.name}-${project.version}.jar</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.corbel</groupId>
<artifactId>rem-api</artifactId>
<version>1.38.0</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>spring-web</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>token</artifactId>
<groupId>io.corbel.lib</groupId>
</exclusion>
<exclusion>
<artifactId>queries-api</artifactId>
<groupId>io.corbel.lib</groupId>
</exclusion>
<exclusion>
<artifactId>java-semver</artifactId>
<groupId>com.github.zafarkhaja</groupId>
</exclusion>
<exclusion>
<artifactId>dropwizard-core</artifactId>
<groupId>io.dropwizard</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.corbel.lib</groupId>
<artifactId>ws</artifactId>
<version>0.23.0</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>config</artifactId>
<groupId>io.corbel.lib</groupId>
</exclusion>
<exclusion>
<artifactId>cli</artifactId>
<groupId>io.corbel.lib</groupId>
</exclusion>
<exclusion>
<artifactId>spring-data-redis</artifactId>
<groupId>org.springframework.data</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
<exclusion>
<artifactId>jedis</artifactId>
<groupId>redis.clients</groupId>
</exclusion>
<exclusion>
<artifactId>gson</artifactId>
<groupId>com.google.code.gson</groupId>
</exclusion>
<exclusion>
<artifactId>commons-codec</artifactId>
<groupId>commons-codec</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
<exclusion>
<artifactId>logback-syslog4j</artifactId>
<groupId>com.papertrailapp</groupId>
</exclusion>
<exclusion>
<artifactId>token</artifactId>
<groupId>io.corbel.lib</groupId>
</exclusion>
<exclusion>
<artifactId>queries-api</artifactId>
<groupId>io.corbel.lib</groupId>
</exclusion>
<exclusion>
<artifactId>spring-web</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert-core</artifactId>
<version>2.0M10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>fest-util</artifactId>
<groupId>org.easytesting</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.3.3.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>asm</artifactId>
<groupId>org.ow2.asm</groupId>
</exclusion>
</exclusions>
</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>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<docker.files>${project.basedir}/../src/docker/rem</docker.files>
</properties>
</project>
|