POM文件内容: |
<?xml version="1.0" encoding="ISO-8859-1"?>
<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>easymock-parent</artifactId>
<groupId>org.easymock</groupId>
<version>3.5.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>easymock</artifactId>
<name>EasyMock</name>
<description>EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly</description>
<inceptionYear>2001</inceptionYear>
<developers>
<developer>
<id>tammo</id>
<name>Tammo Freese</name>
<timezone>+1</timezone>
</developer>
<developer>
<id>henri</id>
<name>Henri Tremblay</name>
<url>http://blog.tremblay.pro/</url>
<timezone>-5</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/src/samples/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Export-Package>org.easymock.internal.*;poweruser=true;mandatory:=poweruser,org.easymock,org.easymock.cglib.core,org.easymock.cglib.proxy,org.easymock.cglib.reflect,org.easymock.asm</Export-Package>
<Import-Package>org.easymock,org.easymock.internal;poweruser=true,org.easymock.cglib.core,org.easymock.cglib.proxy,org.easymock.cglib.reflect,org.easymock.asm,org.objenesis;resolution:=optional</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<artifactSet>
<excludes>
<exclude>junit:junit</exclude>
<exclude>org.objenesis:objenesis</exclude>
<exclude>org.droidparts.dexmaker</exclude>
<exclude>org.hamcrest:hamcrest-core</exclude>
</excludes>
</artifactSet>
<relocations>
<relocation>
<pattern>net.sf.cglib</pattern>
<shadedPattern>org.easymock.cglib</shadedPattern>
</relocation>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>org.easymock.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>fullBuild</id>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<executions>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<header>/Users/hetr/dev/me/easymock/core/../header.txt</header>
<strictCheck>true</strictCheck>
<includes>
<include>src/main/java/**</include>
<include>src/test/java/**</include>
<include>src/samples/java/**</include>
</includes>
<properties>
<inceptionYear>2001</inceptionYear>
<year>${year}</year>
</properties>
</configuration>
</execution>
</executions>
<configuration>
<header>/Users/hetr/dev/me/easymock/core/../header.txt</header>
<strictCheck>true</strictCheck>
<includes>
<include>src/main/java/**</include>
<include>src/test/java/**</include>
<include>src/samples/java/**</include>
</includes>
<properties>
<inceptionYear>2001</inceptionYear>
<year>${year}</year>
</properties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deployBuild</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>easymock-bundle</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>easymock-3.5.1</finalName>
<attach>false</attach>
<descriptors>
<descriptor>/Users/hetr/dev/me/easymock/core/src/main/assembly/assembly-tests.xml</descriptor>
<descriptor>/Users/hetr/dev/me/easymock/core/src/main/assembly/assembly-samples.xml</descriptor>
<descriptor>/Users/hetr/dev/me/easymock/core/src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>2.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.droidparts.dexmaker</groupId>
<artifactId>dexmaker</artifactId>
<version>1.5</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jcommander</artifactId>
<groupId>com.beust</groupId>
</exclusion>
<exclusion>
<artifactId>bsh</artifactId>
<groupId>org.beanshell</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
|