aj-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-parent</artifactId>
<version>0.0.1</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.actionjava</groupId>
<artifactId>aj-parent</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<name>ActionJava</name>
<description>ActionJava project</description>
<url>http://www.actionjava.com</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>manual</distribution>
</license>
</licenses>
<organization>
<name>atRem Interactive Media</name>
<url>http://www.atremmedia.net</url>
</organization>
<developers>
<developer>
<id>boerr</id>
<name>Remon de Boer</name>
<email>remon@atremmedia.net</email>
<url>http://www.atremmedia.net/blog</url>
<organization>atRem Interactive Media</organization>
<organizationUrl>http://www.atremmedia.net</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<modules>
<module>aj-core</module>
<module>aj-console</module>
<module>aj-anim</module>
<!-- module>aj-sound</module -->
<!-- module>aj-io</module -->
<module>aj-base</module>
<module>aj-assets</module>
</modules>
<properties>
<gwtVersion>2.7.0</gwtVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<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-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-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<extensions>true</extensions>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<serverId>nexus</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<skipStaging>true</skipStaging>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- pluginRepositories> <pluginRepository> <id>central</id> <url>http://gotoNexus</url>
<snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots>
<releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases>
</pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository>
<id>nexus-snapshots</id> <url>https://oss.sonatype.org/nexus/content/repositories/snapshots</url>
</snapshotRepository> </distributionManagement -->
<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>
<scm>
<connection>scm:git:git@github.com:boerr/actionjava.git</connection>
<developerConnection>scm:git:git@github.com:boerr/actionjava.git</developerConnection>
<url>scm:git:git@github.com:boerr/actionjava.git</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
</dependency>
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-console</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-anim</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-io</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-sound</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>