Ready poms for sync with maven central via oss.sonatype.org
This commit is contained in:
parent
d272183923
commit
3f6ebcfb20
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
*/target/
|
*/target/
|
||||||
|
target/
|
||||||
|
@ -23,11 +23,10 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.moparisthebest.aptIn16</groupId>
|
<groupId>com.moparisthebest.aptIn16</groupId>
|
||||||
<artifactId>aptIn16</artifactId>
|
<artifactId>aptIn16</artifactId>
|
||||||
<version>0.1</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>apt-mirror-api</artifactId>
|
<artifactId>apt-mirror-api</artifactId>
|
||||||
<version>1.0</version>
|
|
||||||
<name>apt-mirror-api</name>
|
<name>apt-mirror-api</name>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.moparisthebest.aptIn16</groupId>
|
<groupId>com.moparisthebest.aptIn16</groupId>
|
||||||
<artifactId>aptIn16</artifactId>
|
<artifactId>aptIn16</artifactId>
|
||||||
<version>0.1</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>apt-processor</artifactId>
|
<artifactId>apt-processor</artifactId>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.moparisthebest.aptIn16</groupId>
|
<groupId>com.moparisthebest.aptIn16</groupId>
|
||||||
<artifactId>aptIn16</artifactId>
|
<artifactId>aptIn16</artifactId>
|
||||||
<version>0.1</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>core</artifactId>
|
<artifactId>core</artifactId>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.moparisthebest.aptIn16</groupId>
|
<groupId>com.moparisthebest.aptIn16</groupId>
|
||||||
<artifactId>aptIn16</artifactId>
|
<artifactId>aptIn16</artifactId>
|
||||||
<version>0.1</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>netui-compiler-test</artifactId>
|
<artifactId>netui-compiler-test</artifactId>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.moparisthebest.aptIn16</groupId>
|
<groupId>com.moparisthebest.aptIn16</groupId>
|
||||||
<artifactId>aptIn16</artifactId>
|
<artifactId>aptIn16</artifactId>
|
||||||
<version>0.1</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<artifactId>netui-compiler</artifactId>
|
<artifactId>netui-compiler</artifactId>
|
||||||
|
42
pom.xml
42
pom.xml
@ -19,16 +19,22 @@
|
|||||||
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.moparisthebest.aptIn16</groupId>
|
<groupId>com.moparisthebest.aptIn16</groupId>
|
||||||
<artifactId>aptIn16</artifactId>
|
<artifactId>aptIn16</artifactId>
|
||||||
<version>0.1</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
<name>aptIn16</name>
|
<name>aptIn16</name>
|
||||||
<description>
|
<description>
|
||||||
aptIn16 is an implementation of the com.sun.mirror.* classes allowing classes implementing them to run as
|
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.
|
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.
|
It can be used by anyone who currently relies on apt but would like to switch to the newer/faster javac.
|
||||||
</description>
|
</description>
|
||||||
|
<url>https://github.com/moparisthebest/aptIn16</url>
|
||||||
<organization>
|
<organization>
|
||||||
<name>moparisthebest.com</name>
|
<name>moparisthebest.com</name>
|
||||||
<url>http://www.moparisthebest.com</url>
|
<url>http://www.moparisthebest.com</url>
|
||||||
@ -55,6 +61,7 @@
|
|||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<properties>
|
<properties>
|
||||||
<maven.test.skip>true</maven.test.skip>
|
<maven.test.skip>true</maven.test.skip>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
<modules>
|
<modules>
|
||||||
<module>apt-mirror-api</module>
|
<module>apt-mirror-api</module>
|
||||||
@ -76,39 +83,6 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<profiles>
|
<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>
|
<profile>
|
||||||
<id>test-netui</id>
|
<id>test-netui</id>
|
||||||
<modules>
|
<modules>
|
||||||
|
Loading…
Reference in New Issue
Block a user