1 2 <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"> 3 <modelVersion>4.0.0</modelVersion> 4 5 <parent> 6 <groupId>com.tunnelvisionlabs</groupId> 7 <artifactId>antlr4-master</artifactId> 8 <version>4.5</version> 9 <relativePath>../..</relativePath> 10 </parent> 11 12 <artifactId>antlr4-annotations</artifactId> 13 14 <name>ANTLR 4 Runtime Annotations</name> 15 <description>A set of annotations used within the ANTLR 4 Runtime</description> 16 17 <build> 18 <sourceDirectory>src</sourceDirectory> 19 <resources> 20 <resource> 21 <directory>resources</directory> 22 </resource> 23 </resources> 24 25 <plugins> 26 <plugin> 27 <groupId>org.apache.maven.plugins</groupId> 28 <artifactId>maven-compiler-plugin</artifactId> 29 <configuration> 30 <compilerArgs> 31 <compilerArg>-proc:none</compilerArg> 32 </compilerArgs> 33 </configuration> 34 </plugin> 35 </plugins> 36 </build> 37 38 </project> 39