Skip to content

Commit

Permalink
Merge chore/REL1_6_STABLE/annprocwarns into REL1_6_STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
jcflack committed Jun 16, 2024
2 parents 10beea3 + a3a3927 commit 3a617a9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pljava-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@
<arg>--processor-module-path</arg>
<arg>${basedir}/../pljava-api/target/pljava-api-${project.version}.jar</arg>
</compilerArgs>
<annotationProcessors>
<annotationProcessor>
org.postgresql.pljava.annotation.processing.DDRProcessor
</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
<plugin>
Expand Down
3 changes: 3 additions & 0 deletions pljava-packaging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,9 @@ function execute()
<goals>
<goal>compile</goal>
</goals>
<configuration>
<proc>none</proc>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
8 changes: 8 additions & 0 deletions pljava-pgxs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>none</proc>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions pljava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<arg>--processor-module-path</arg>
<arg>${basedir}/../pljava-api/target/pljava-api-${project.version}.jar</arg>
</compilerArgs>
<annotationProcessors>
<annotationProcessor>
org.postgresql.pljava.annotation.processing.DDRProcessor
</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 3a617a9

Please sign in to comment.