parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ivanceras</groupId>
<artifactId>parent</artifactId>
<version>0.1.2</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>com.ivanceras</groupId>
<artifactId>parent</artifactId>
<name>parent</name>
<packaging>pom</packaging>
<version>0.1.2</version>
<url>https://github.com/ivanceras/parent</url>
<description>parent for ORM, fluentsql and commons.This is only for unifying the version of the 3 maven projects associated with ivanceras orm</description>
<scm>
<url>scm:git:https://github.com/ivanceras/parent.git</url>
<connection>scm:git:https://github.com/ivanceras/parent.git</connection>
<developerConnection>scm:git:https://github.com/ivanceras/parent.git</developerConnection>
<tag>parent-0.1.2</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<!-- <distributionManagement> -->
<!-- <repository> -->
<!-- <id>${releases.id}</id> -->
<!-- <url>${releases.url}</url> -->
<!-- </repository> -->
<!-- <snapshotRepository> -->
<!-- <id>${snapshots.id}</id> -->
<!-- <url>${snapshots.url}</url> -->
<!-- </snapshotRepository> -->
<!-- </distributionManagement> -->
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Jovansonlee Cesar</name>
<email>ivanceras@gmail.com</email>
<organization>ivanceras</organization>
<organizationUrl>www.ivanceras.com</organizationUrl>
</developer>
</developers>
<properties>
<!-- Maven Plugins -->
<maven.surefire.version>2.8.1</maven.surefire.version>
<builder.helper.maven.version>1.8</builder.helper.maven.version>
<maven.eclipse.version>2.9</maven.eclipse.version>
<maven.clean.version>2.4.1</maven.clean.version>
<maven.release.version>2.5</maven.release.version>
<!-- Java compiler -->
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<!-- Project Encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
<!-- External Libraries -->
<gwtVersion>2.6.1</gwtVersion>
<junit.version>4.4</junit.version>
</properties>
<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>
<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.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</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-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.version}</version>
<configuration>
<goals>deploy</goals>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>