Skip to content

Commit

Permalink
moving copy-flatc to initialize phase and analyze execution to
Browse files Browse the repository at this point in the history
parent pom
  • Loading branch information
antonymayi committed Aug 22, 2017
1 parent ec72717 commit d7f081e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 30 deletions.
2 changes: 1 addition & 1 deletion java/format/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<executions>
<execution>
<id>copy-flatc</id>
<phase>generate-sources</phase>
<phase>initialize</phase>
<goals>
<goal>copy</goal>
</goals>
Expand Down
9 changes: 0 additions & 9 deletions java/memory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,7 @@
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
</build>



</project>
29 changes: 17 additions & 12 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,23 @@
<linkXRef>false</linkXRef>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze</id>
<phase>verify</phase>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<ignoreNonCompile>true</ignoreNonCompile>
<failOnWarning>true</failOnWarning>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

<pluginManagement>
Expand All @@ -324,18 +341,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<ignoreNonCompile>true</ignoreNonCompile>
<failOnWarning>true</failOnWarning>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
Expand Down
4 changes: 0 additions & 4 deletions java/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
</build>

Expand Down
4 changes: 0 additions & 4 deletions java/vector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit d7f081e

Please sign in to comment.