mappify
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.shyiko.mappify</groupId> <artifactId>mappify</artifactId> <version>1.3.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> <groupId>com.github.shyiko.mappify</groupId> <artifactId>mappify</artifactId> <version>1.3.2</version> <packaging>pom</packaging> <name>mappify</name> <description>Dead-simple object mapping in Java</description> <url>https://github.com/shyiko/mappify</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>sshyiko</id> <email>stanley.shyiko@gmail.com</email> <name>Stanley Shyiko</name> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <modules> <module>mappify-api</module> <module>mappify-handcraft</module> <module>mappify-handcraft-spring</module> </modules> <scm> <connection>scm:git:git@github.com:shyiko/mappify.git</connection> <developerConnection>scm:git:git@github.com:shyiko/mappify.git</developerConnection> <url>git@github.com:shyiko/mappify.git</url> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus Staging</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>com.github.shyiko.usage-maven-plugin</groupId> <artifactId>usage-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <usage> # build everything (append "-DskipTests=true" if you wish to skip tests) mvn clean install # deploy snapshots into nexus mvn -P with-sources-and-javadocs -Ddeploy=snapshot # sign release build and deploy into nexus mvn -P with-sources-and-javadocs -Ddeploy=release </usage> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>com.github.shyiko.usage-maven-plugin</groupId> <artifactId>usage-maven-plugin</artifactId> <version>1.0.0</version> </extension> </extensions> </build> <profiles> <profile> <id>with-sources-and-javadocs</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>snapshot</id> <activation> <property> <name>deploy</name> <value>snapshot</value> </property> </activation> <build> <defaultGoal>clean deploy</defaultGoal> </build> </profile> <profile> <id>release</id> <activation> <property> <name>deploy</name> <value>release</value> </property> </activation> <build> <defaultGoal>clean release:clean release:prepare release:perform</defaultGoal> <plugins> <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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.2</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>