Skip to content

Commit

Permalink
issue55 plugin for maven release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Sep 15, 2013
1 parent 0a24007 commit 79bd3e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 21 deletions.
21 changes: 3 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>3.0.5-SNAPSHOT</version>
<version>3.1.0-SNAPSHOT</version>
<name>maven-processor-plugin - ${project.version}</name>
<description>A maven plugin to process annotation for jdk6 at compile time

Expand All @@ -13,24 +13,9 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<url>http://code.google.com/p/maven-annotation-plugin/</url>

<prerequisites>
<maven>3.0.5</maven>
<maven>3.1.0</maven>
</prerequisites>

<!--
LEGACY MAVEN2 REPORTING
<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>
Expand All @@ -48,7 +33,7 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
</distributionManagement>

<properties>
<maven.release>3.0.5</maven.release>
<maven.release>3.1.0</maven.release>
<!-- SONATYPE REPO -->
<snapshot.repo.id>sonatype-repo</snapshot.repo.id>
<snapshot.repo.url>https://oss.sonatype.org/content/repositories/snapshots</snapshot.repo.url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
import org.codehaus.plexus.util.StringUtils;

// 3.0.5
/*
import org.sonatype.aether.RepositorySystem;
import org.sonatype.aether.RepositorySystemSession;
import org.sonatype.aether.artifact.ArtifactTypeRegistry;
Expand All @@ -56,18 +57,18 @@
import org.sonatype.aether.resolution.ArtifactResolutionException;
import org.sonatype.aether.resolution.ArtifactResult;
import org.sonatype.aether.util.artifact.DefaultArtifact;
/*
*/

// 3.1.0
import org.eclipse.aether.RepositorySystem;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.artifact.ArtifactType;
import org.eclipse.aether.artifact.ArtifactTypeRegistry;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.resolution.ArtifactRequest;
import org.eclipse.aether.resolution.ArtifactResolutionException;
import org.eclipse.aether.resolution.ArtifactResult;
*/


/**
*
Expand Down

0 comments on commit 79bd3e6

Please sign in to comment.