build
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>es.prodevelop</groupId>
<artifactId>build</artifactId>
<version>1.0.1</version>
</dependency><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"> <modelVersion>4.0.0</modelVersion> <groupId>es.prodevelop</groupId> <artifactId>build</artifactId> <packaging>pom</packaging> <version>1.0.1</version> <name>build</name> <url>http://www.gvsigmini.org</url> <description>Build project for gvSIG Mini</description> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>GNU General Public License, Version 2.0 or any later version</name> <url>http://www.gnu.org/licenses/gpl-2.0.html</url> </license> </licenses> <scm> <url>https://svn.prodevelop.es/public/gvsigmini/gvsig_mini_build/tags/build-1.0.1</url> <connection>https://svn.prodevelop.es/public/gvsigmini/gvsig_mini_build/tags/build-1.0.1</connection> <developerConnection>scm:svn:https://svn.prodevelop.es/public/gvsigmini/gvsig_mini_build/tags/build-1.0.1</developerConnection> </scm> <developers> <developer> <id>aromeu</id> <name>Alberto Romeu</name> <email>aromeu@prodevelop.es</email> </developer> </developers> <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-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>