Ready poms for sync with maven central via oss.sonatype.org

This commit is contained in:
Travis Burtrum 2012-10-30 12:58:58 -04:00
parent d272183923
commit 3f6ebcfb20
7 changed files with 14 additions and 40 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.idea/
*.iml
*/target/
target/

View File

@ -23,11 +23,10 @@
<parent>
<groupId>com.moparisthebest.aptIn16</groupId>
<artifactId>aptIn16</artifactId>
<version>0.1</version>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>apt-mirror-api</artifactId>
<version>1.0</version>
<name>apt-mirror-api</name>
<profiles>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>com.moparisthebest.aptIn16</groupId>
<artifactId>aptIn16</artifactId>
<version>0.1</version>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>apt-processor</artifactId>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>com.moparisthebest.aptIn16</groupId>
<artifactId>aptIn16</artifactId>
<version>0.1</version>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>core</artifactId>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>com.moparisthebest.aptIn16</groupId>
<artifactId>aptIn16</artifactId>
<version>0.1</version>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>netui-compiler-test</artifactId>

View File

@ -23,7 +23,7 @@
<parent>
<groupId>com.moparisthebest.aptIn16</groupId>
<artifactId>aptIn16</artifactId>
<version>0.1</version>
<version>0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>netui-compiler</artifactId>

42
pom.xml
View File

@ -19,16 +19,22 @@
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.moparisthebest.aptIn16</groupId>
<artifactId>aptIn16</artifactId>
<version>0.1</version>
<version>0.1-SNAPSHOT</version>
<name>aptIn16</name>
<description>
aptIn16 is an implementation of the com.sun.mirror.* classes allowing classes implementing them to run as
Java 1.6 javac in-process annotation processors. This is orders of magnitude faster than apt.
It can be used by anyone who currently relies on apt but would like to switch to the newer/faster javac.
</description>
<url>https://github.com/moparisthebest/aptIn16</url>
<organization>
<name>moparisthebest.com</name>
<url>http://www.moparisthebest.com</url>
@ -55,6 +61,7 @@
<packaging>pom</packaging>
<properties>
<maven.test.skip>true</maven.test.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>apt-mirror-api</module>
@ -76,39 +83,6 @@
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>test-netui</id>
<modules>