summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--aai-traversal/pom.xml55
1 files changed, 29 insertions, 26 deletions
diff --git a/aai-traversal/pom.xml b/aai-traversal/pom.xml
index 157f969..575720c 100644
--- a/aai-traversal/pom.xml
+++ b/aai-traversal/pom.xml
@@ -868,23 +868,7 @@
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/main/assembly/descriptor.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id> <!-- this is used for inheritance merges -->
- <phase>package</phase> <!-- bind to the packaging phase -->
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
@@ -962,7 +946,23 @@
</executions>
</plugin>
<plugin>
- <groupId>org.springframework.boot</groupId>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr4-maven-plugin</artifactId>
+ <version>4.7.2</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>antlr4</goal>
+ </goals>
+ <configuration>
+ <sourceDirectory>src/main/resources/antlr4</sourceDirectory>
+ <!-- <outputDirectory>src/main/java/antlr4</outputDirectory> -->
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>${start-class}</mainClass>
@@ -976,19 +976,22 @@
</execution>
</executions>
</plugin>
+
+
<plugin>
- <groupId>org.antlr</groupId>
- <artifactId>antlr4-maven-plugin</artifactId>
- <version>4.7</version>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/descriptor.xml</descriptor>
+ </descriptors>
+ </configuration>
<executions>
<execution>
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
+ <phase>package</phase> <!-- bind to the packaging phase -->
<goals>
- <goal>antlr4</goal>
+ <goal>single</goal>
</goals>
- <configuration>
- <sourceDirectory>src/main/resources/antlr4</sourceDirectory>
- <!-- <outputDirectory>src/main/java/antlr4</outputDirectory> -->
- </configuration>
</execution>
</executions>
</plugin>