<?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>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>9</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.carrot2.shaded</groupId>
<artifactId>guava</artifactId>
<name>Google Guava (shaded)</name>
<version>18.0</version>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven-compiler-plugin}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.maven-jar-plugin}</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifestEntries>
<Project-GroupId>${project.groupId}</Project-GroupId>
<Project-ArtifactId>${project.artifactId}</Project-ArtifactId>
<Project-Version>${project.version}</Project-Version>
<Project-Name>${project.name}</Project-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.maven-resources-plugin}</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.maven-surefire-plugin}</version>
<executions>
<execution>
<id>default-test</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${version.maven-shade-plugin}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
<shadedArtifactAttached>false</shadedArtifactAttached>
<minimizeJar>false</minimizeJar>
<artifactSet>
<includes>
<include>com.google.guava:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.google</pattern>
<shadedPattern>org.carrot2.shaded.guava</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${version.maven-enforcer-plugin}</version>
<executions>
<execution>
<id>enforce-environment</id>
<phase>package</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>1.7.0</version>
</requireJavaVersion>
<requireMavenVersion>
<version>${version.maven.api}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
<properties>
<version.maven.api>3.2.3</version.maven.api>
<version.maven-shade-plugin>2.4.1</version.maven-shade-plugin>
<version.maven-surefire-plugin>2.17</version.maven-surefire-plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.maven-assembly-plugin>2.5.5</version.maven-assembly-plugin>
<maven.compiler.source>1.7</maven.compiler.source>
<version.maven-dependency-plugin>2.10</version.maven-dependency-plugin>
<version.maven-resources-plugin>2.6</version.maven-resources-plugin>
<version.maven-enforcer-plugin>1.3.1</version.maven-enforcer-plugin>
<version.maven-deploy-plugin>2.8.2</version.maven-deploy-plugin>
<version.maven-clean-plugin>2.5</version.maven-clean-plugin>
<version.maven-jar-plugin>2.5</version.maven-jar-plugin>
<version.maven-site-plugin>3.4</version.maven-site-plugin>
<version.maven-install-plugin>2.5.2</version.maven-install-plugin>
<maven.compiler.target>1.7</maven.compiler.target>
<version.maven-compiler-plugin>3.1</version.maven-compiler-plugin>
<version.maven-antrun-plugin>1.7</version.maven-antrun-plugin>
<version.maven-eclipse-plugin>2.9</version.maven-eclipse-plugin>
</properties>
</project>
|