Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Jun 25, 2012
1 parent 7947063 commit a6874bc
Show file tree
Hide file tree
Showing 44 changed files with 3,814 additions and 0 deletions.
308 changes: 308 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,308 @@
<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.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>2.0.6-SNAPSHOT</version>
<name>maven-processor-plugin Maven Mojo</name>
<description>A maven plugin to process annotation for jdk6 at compile time

This plugin helps to use from maven the new annotation processing provided by JDK6 integrated in java compiler

This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.codehaus.org/apt-maven-plugin/ </description>
<url>http://code.google.com/p/maven-annotation-plugin/</url>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.5.1</version>
</plugin>
</plugins>
</reporting>

<distributionManagement>
<repository>
<id>${release.repo.id}</id>
<url>${release.repo.url}</url>
</repository>
<snapshotRepository>
<id>${snapshot.repo.id}</id>
<url>${snapshot.repo.url}</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
<site>
<id>${release.site.id}</id>
<url>${release.site.url}</url>
</site>
</distributionManagement>

<properties>
<!-- SONATYPE REPO -->
<snapshot.repo.id>sonatype-repo</snapshot.repo.id>
<snapshot.repo.url>https://oss.sonatype.org/content/repositories/snapshots</snapshot.repo.url>
<release.repo.id>sonatype-repo</release.repo.id>
<release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url>

<!-- GOOGLE REPO
<snapshot.repo.id>google-project</snapshot.repo.id>
<snapshot.repo.url>svn:https://maven-annotation-plugin.googlecode.com/svn/trunk/mavenrepo</snapshot.repo.url>
-->
<!-- JAVA.NET
<release.repo.id>java.net-m2-repository</release.repo.id>
<release.repo.url>java-net:/maven2-repository/trunk/repository/</release.repo.url>
-->
<release.site.url>svn:https://maven-annotation-plugin.googlecode.com/svn/docs</release.site.url>
<release.site.id>google-project</release.site.id>
<maven.anno.version>1.3.1</maven.anno.version>
</properties>


<scm>
<connection>scm:svn:https://maven-annotation-plugin.googlecode.com/svn/trunk/processor</connection>
<developerConnection>scm:svn:https://maven-annotation-plugin.googlecode.com/svn/trunk/processor</developerConnection>
<url>https://maven-annotation-plugin.googlecode.com/svn/trunk/processor</url>
</scm>

<inceptionYear>2009</inceptionYear>

<developers>
<developer>
<email>bartolomeo.sorrentino@gmail.com</email>
<name>Bartolomeo Sorrentino</name>
<timezone>GMT+1</timezone>
<roles>
<role>Owner</role>
</roles>
</developer>
<developer>
<email>igor.vay...@gmail.com</email>
<name>Igor Vaynberg</name>
<roles>
<role>Committer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.0.1</version>
</dependency>



<!--
<dependency>
<groupId>org.jfrog.maven.annomojo</groupId>
<artifactId>maven-plugin-tools-anno</artifactId>
<version>${maven.anno.version}</version>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<!--
<repositories>
<repository>
<id>jfrog</id>
<name>jfrog repository</name>
<layout>default</layout>
<url>http://repo.jfrog.org/artifactory/plugins-releases-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jfrog</id>
<name>jfrog repository</name>
<layout>default</layout>
<url>http://repo.jfrog.org/artifactory/plugins-releases-local</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
-->

<build>

<plugins>


<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>

<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.6</version>

<dependencies>
<!--
<dependency>
<groupId>org.jfrog.maven.annomojo</groupId>
<artifactId>maven-plugin-tools-anno</artifactId>
<version>${maven.anno.version}</version>
<scope>runtime</scope>
</dependency>
-->
</dependencies>


</plugin>


</plugins>

<extensions>

<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>1.8</version>
</extension>
<!--
<extension>
<groupId>org.jfrog.maven.annomojo</groupId>
<artifactId>maven-plugin-tools-anno</artifactId>
<version>${maven.anno.version}</version>
</extension>
-->
</extensions>


</build>

<profiles>

<profile>
<id>release</id>
<build>
<plugins>
<!--
=====================================================================
mvn -Prelease release:perform -Darguments=-Dgpg.passphrase=thephrase
=====================================================================
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.3</version>

<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>

</plugin>


</plugins>
</build>
</profile>

<profile>
<id>twitter</id>

<build>
<plugins>
<plugin>
<groupId>com.vineetmanohar</groupId>
<artifactId>maven-twitter-plugin</artifactId>
<version>0.1</version>

<executions>
<!-- phase: deploy -->
<execution>
<configuration>
<!-- Tell your users that the project is deployed -->
<twitterStatus>New release ${project.version} of maven-annotation-plugin is available - http://code.google.com/p/maven-annotation-plugin</twitterStatus>
</configuration>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>tweet</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>confluence</id>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>

<configuration>

<reportPlugins>

<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-confluence-reporting-plugin</artifactId>
<version>3.1.4-SNAPSHOT</version>
<reportSets>
<reportSet>
<id>confluence</id>
<configuration>
<endPoint>http://localhost:8090/rpc/xmlrpc</endPoint>
<spaceKey>ds</spaceKey>
<parentPageTitle>Tutorial</parentPageTitle>
<username>admin</username>
</configuration>
<reports>
<report>plugin-confluence-summary</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</profile>

</profiles>

</project>
5 changes: 5 additions & 0 deletions src/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 37
/svn/!svn/ver/402/trunk/processor/src
END
34 changes: 34 additions & 0 deletions src/.svn/entries
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
10

dir
402
https://maven-annotation-plugin.googlecode.com/svn/trunk/processor/src
https://maven-annotation-plugin.googlecode.com/svn



2011-12-05T09:41:48.030113Z
402
bartolomeo.sorrentino@gmail.com














f19866a6-d851-11dd-a412-a1792178251d

main
dir

site
dir

5 changes: 5 additions & 0 deletions src/main/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 42
/svn/!svn/ver/402/trunk/processor/src/main
END
34 changes: 34 additions & 0 deletions src/main/.svn/entries
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
10

dir
402
https://maven-annotation-plugin.googlecode.com/svn/trunk/processor/src/main
https://maven-annotation-plugin.googlecode.com/svn



2011-12-05T09:41:48.030113Z
402
bartolomeo.sorrentino@gmail.com














f19866a6-d851-11dd-a412-a1792178251d

java
dir

resources
dir

5 changes: 5 additions & 0 deletions src/main/java/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 47
/svn/!svn/ver/402/trunk/processor/src/main/java
END

0 comments on commit a6874bc

Please sign in to comment.