arm4-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.arm4</groupId>
<artifactId>arm4-api</artifactId>
<version>1.0.0</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>org.arm4</groupId>
<artifactId>arm4-api</artifactId>
<version>1.0.0</version>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<name>ARM 4 API</name>
<description>Packaging of the Open Group's ARM4 API for Java</description>
<url>http://www.arm4.org</url>
<scm>
<url>http://svn.davidcarter.ca/svn/arm4_support/arm4-api/tags/arm4-api-1.0.0</url>
<connection>scm:svn:http://svn.davidcarter.ca/svn/arm4_support/arm4-api/tags/arm4-api-1.0.0</connection>
<developerConnection>scm:svn:https://svn.davidcarter.ca/svn/arm4_support/arm4-api/tags/arm4-api-1.0.0</developerConnection>
</scm>
<licenses>
<license>
<name>Eclipse Public License v1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<developers>
<developer>
<id>dcarter</id>
<name>David Carter</name>
<email>dcarter@davidcarter.ca</email>
<url>http://www.davidcarter.ca</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doctitle>ARM 4.0 API Specification</doctitle>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>