Skip to content

Commit

Permalink
Merge branch 'feature/mvn_3_9#102' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Sep 15, 2023
2 parents adcde7c + 9076fdf commit 3e635da
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 20 deletions.
2 changes: 1 addition & 1 deletion compiler-jdk8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>maven-processor-plugin-parent</artifactId>
<groupId>org.bsc.maven</groupId>
<version>5.0-jdk8-rc3</version>
<version>5.0-jdk8-SNAPSHOT</version>
<relativePath>../pom-jdk8.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,10 @@ public void setProcessors(Iterable<? extends Processor> processors) {
public void setLocale(Locale locale) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public void addModules(Iterable<String> moduleNames) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public Boolean call() {
Expand Down
2 changes: 1 addition & 1 deletion compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>maven-processor-plugin-parent</artifactId>
<groupId>org.bsc.maven</groupId>
<version>5.0-rc3</version>
<version>5.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
24 changes: 18 additions & 6 deletions pom-jdk8.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-parent</artifactId>
<packaging>pom</packaging>
<version>5.0-jdk8-rc3</version>
<version>5.0-jdk8-SNAPSHOT</version>
<name>MAVEN PROCESSOR PLUGIN PARENT (JDK8)</name>
<description>A maven plugin to process annotation for jdk6 at compile time

Expand All @@ -13,7 +13,7 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<url>https://github.com/bsorrentino/maven-annotation-plugin</url>

<prerequisites>
<maven>3.5</maven>
<maven>3.6</maven>
</prerequisites>

<distributionManagement>
Expand All @@ -36,9 +36,9 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<release.repo.id>sonatype-repo</release.repo.id>
<release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url>

<maven.version>3.5.4</maven.version>
<maven.version>3.6.0</maven.version>
<maven.plugin.version>3.6.0</maven.plugin.version>
<plexus.compiler.version>2.8.3</plexus.compiler.version>
<plexus.compiler.version>2.13.0</plexus.compiler.version>

<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down Expand Up @@ -156,13 +156,25 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<propertiesEncoding>UTF-8</propertiesEncoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>jar</nonFilteredFileExtension>
<nonFilteredFileExtension>zip</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.8.2</version>
<version>3.12.1</version>
</plugin>

<plugin>
Expand Down
23 changes: 17 additions & 6 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-parent</artifactId>
<packaging>pom</packaging>
<version>5.0-rc3</version>
<version>5.0-SNAPSHOT</version>
<name>MAVEN PROCESSOR PLUGIN PARENT</name>
<description>A maven plugin to process annotation for jdk6 at compile time

Expand All @@ -13,7 +13,7 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<url>https://github.com/bsorrentino/maven-annotation-plugin</url>

<prerequisites>
<maven>3.5</maven>
<maven>3.6</maven>
</prerequisites>

<distributionManagement>
Expand All @@ -36,9 +36,9 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<release.repo.id>sonatype-repo</release.repo.id>
<release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url>

<maven.version>3.5.4</maven.version>
<maven.version>3.6.0</maven.version>
<maven.plugin.version>3.6.0</maven.plugin.version>
<plexus.compiler.version>2.8.3</plexus.compiler.version>
<plexus.compiler.version>2.13.0</plexus.compiler.version>

<maven.compiler.source>1.9</maven.compiler.source>
<maven.compiler.target>1.9</maven.compiler.target>
Expand Down Expand Up @@ -158,13 +158,24 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<propertiesEncoding>UTF-8</propertiesEncoding>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>jar</nonFilteredFileExtension>
<nonFilteredFileExtension>zip</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.8.2</version>
<version>3.12.1</version>
</plugin>

<plugin>
Expand Down
2 changes: 1 addition & 1 deletion processor/pom-jdk8.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<parent>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-parent</artifactId>
<version>5.0-jdk8-rc3</version>
<version>5.0-jdk8-SNAPSHOT</version>
<relativePath>../pom-jdk8.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This plugin could be considered the 'alter ego' of maven apt plugin http://mojo.
<parent>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-parent</artifactId>
<version>5.0-rc3</version>
<version>5.0-SNAPSHOT</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion test/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-parent</artifactId>
<version>5.0-rc3</version>
<version>5.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion test/processors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-parent</artifactId>
<version>5.0-rc3</version>
<version>5.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion utils/pom-jdk8.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-parent</artifactId>
<version>5.0-jdk8-rc3</version>
<version>5.0-jdk8-SNAPSHOT</version>
<relativePath>../pom-jdk8.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin-parent</artifactId>
<version>5.0-rc3</version>
<version>5.0-SNAPSHOT</version>
</parent>

<properties>
Expand Down

0 comments on commit 3e635da

Please sign in to comment.