This is an automated email from the ASF dual-hosted git repository.
yzhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git
The following commit(s) were added to refs/heads/master by this push:
new f181469 MNEMONIC-674: Fix processor warning during building process
f181469 is described below
commit f181469cd977ef81da6462be651b4b78116e2aa9
Author: Chunyong He <[email protected]>
AuthorDate: Sun Aug 22 10:46:49 2021 -0700
MNEMONIC-674: Fix processor warning during building process
Signed-off-by: Chunyong He <[email protected]>
---
mnemonic-sessions/pom.xml | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/mnemonic-sessions/pom.xml b/mnemonic-sessions/pom.xml
index 283587b..efa8318 100644
--- a/mnemonic-sessions/pom.xml
+++ b/mnemonic-sessions/pom.xml
@@ -86,34 +86,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>org.bsc.maven</groupId>
- <artifactId>maven-processor-plugin</artifactId>
- <executions>
- <execution>
- <id>process-test</id>
- <goals><goal>process-test</goal></goals>
- <phase>generate-test-sources</phase>
- <configuration>
- <compilerArguments>-XDenableSunApiLintControl</compilerArguments>
- <processors>
-
<processor>${project.parent.groupId}.DurableEntityProcessor</processor>
- </processors>
- </configuration>
- </execution>
- <execution>
- <id>process</id>
- <goals><goal>process</goal></goals>
- <phase>generate-sources</phase>
- <configuration>
- <compilerArguments>-XDenableSunApiLintControl</compilerArguments>
- <processors>
-
<processor>${project.parent.groupId}.DurableEntityProcessor</processor>
- </processors>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>