Skip to content

Commit

Permalink
generate antlr sources during build
Browse files Browse the repository at this point in the history
  • Loading branch information
autermann committed Apr 1, 2020
1 parent 39c55ca commit d99834b
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16,509 deletions.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
limitations under the License.
-->
<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">
<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>
Expand Down Expand Up @@ -1127,6 +1128,11 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven-javadoc-plugin}</version>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${version.antlr4}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
7 changes: 1 addition & 6 deletions svalbard/odata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${version.antlr4}</version>
<configuration>
<arguments>
<argument>-visitor</argument>
Expand All @@ -143,25 +142,21 @@
<goal>antlr4</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<outputDirectory>src/main/java</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<consoleOutput>true</consoleOutput>
<excludes>**/org/n52/svalbard/odata/grammar/*.java</excludes>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<configuration>
<onlyAnalyze>org.n52.svalbard.odata.core.*</onlyAnalyze>
<includeFilterFile>src/main/spotbugs/ignore.xml</includeFilterFile>
</configuration>
</plugin>
</plugins>
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit d99834b

Please sign in to comment.