hellow-prozessor/core/pom.xml

31 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent-pom</artifactId>
<groupId>de.hhhammer.prozessor</groupId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<groupId>de.hhhammer.prozessor.core</groupId>
<artifactId>core</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>core</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- Disable Annotation Processing -->
<!-- The compiler would try to invoke the not compiled processor -->
<!-- This can be overcome by using something like AutoService annotation processor from Google which itself is an annotation processor which will register our processor, but the JPMS support is basically not existing -->
<proc>none</proc>
</configuration>
</plugin>
</plugins>
</build>
</project>