Skip to content

Commit 3a617a9

Browse files
committed
Merge chore/REL1_6_STABLE/annprocwarns into REL1_6_STABLE
2 parents 10beea3 + a3a3927 commit 3a617a9

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

pljava-examples/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@
5858
<arg>--processor-module-path</arg>
5959
<arg>${basedir}/../pljava-api/target/pljava-api-${project.version}.jar</arg>
6060
</compilerArgs>
61+
<annotationProcessors>
62+
<annotationProcessor>
63+
org.postgresql.pljava.annotation.processing.DDRProcessor
64+
</annotationProcessor>
65+
</annotationProcessors>
6166
</configuration>
6267
</plugin>
6368
<plugin>

pljava-packaging/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ function execute()
172172
<goals>
173173
<goal>compile</goal>
174174
</goals>
175+
<configuration>
176+
<proc>none</proc>
177+
</configuration>
175178
</execution>
176179
</executions>
177180
</plugin>

pljava-pgxs/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,14 @@
5656

5757
<build>
5858
<plugins>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-compiler-plugin</artifactId>
62+
<configuration>
63+
<proc>none</proc>
64+
</configuration>
65+
</plugin>
66+
5967
<plugin>
6068
<groupId>org.apache.maven.plugins</groupId>
6169
<artifactId>maven-plugin-plugin</artifactId>

pljava/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@
3030
<arg>--processor-module-path</arg>
3131
<arg>${basedir}/../pljava-api/target/pljava-api-${project.version}.jar</arg>
3232
</compilerArgs>
33+
<annotationProcessors>
34+
<annotationProcessor>
35+
org.postgresql.pljava.annotation.processing.DDRProcessor
36+
</annotationProcessor>
37+
</annotationProcessors>
3338
</configuration>
3439
</plugin>
3540
</plugins>

0 commit comments

Comments
 (0)