chameleon
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.lpandzic.chameleon</groupId> <artifactId>chameleon</artifactId> <version>1.2</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.github.lpandzic.chameleon</groupId> <artifactId>chameleon</artifactId> <version>1.2</version> <packaging>jar</packaging> <name>Chameleon</name> <description>Chameleon is a relatively small, simple library used for creation of proxies at runtime.</description> <url>http://github.com/lpandzic/chameleon</url> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>The GNU Lesser General Public License, version 2.1</name> <url>http://opensource.org/licenses/LGPL-2.1</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>lpandzic</id> <name>Lovro Pandzic</name> <email>lovro.pandzic@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:lpandzic/chameleon.git</connection> <developerConnection>scm:git:git@github.com:lpandzic/chameleon.git</developerConnection> <url>git@github.com:lpandzic/chameleon.git</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/lpandzic/chameleon/issues</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://lpandzic.ci.cloudbees.com/job/chameleon/</url> </ciManagement> <properties> <!-- Objenesis --> <objenesis.version>2.1</objenesis.version> <!-- Cglib --> <cglib.version>3.1</cglib.version> <!-- TESTING DEPENDENCIES --> <mockito-core.version>1.9.5</mockito-core.version> <junit.version>4.11</junit.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.5</java.version> </properties> <dependencies> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>${objenesis.version}</version> </dependency> <dependency> <groupId>org.sonatype.sisu.inject</groupId> <artifactId>cglib</artifactId> <version>${cglib.version}</version> </dependency> <!-- TESTING DEPENDENCIES --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- COMPILE FOR 1.5 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <!-- ATTACH SOURCES --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- ATTACH JAVADOC --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.3.2</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>