Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Manage frontend-maven-plugin and docker-maven-plugin in the top level
Browse files Browse the repository at this point in the history
pom file
  • Loading branch information
ppalaga committed Jan 15, 2016
1 parent 6dc197d commit 38aa976
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
4 changes: 0 additions & 4 deletions console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
<bower.link.package />
<node.version>v4.2.2</node.version>
<node.npm.version>2.14.7</node.npm.version>
<node.maven.plugin.version>0.0.26</node.maven.plugin.version>
<hawkular.checkstyle.excludes>
release.properties,
**/*.d.ts,
Expand Down Expand Up @@ -183,7 +182,6 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${node.maven.plugin.version}</version>

<configuration>
<workingDirectory>target/gulp-build/</workingDirectory>
Expand Down Expand Up @@ -243,7 +241,6 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${node.maven.plugin.version}</version>

<configuration>
<workingDirectory>target/gulp-build/</workingDirectory>
Expand Down Expand Up @@ -317,7 +314,6 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${node.maven.plugin.version}</version>

<configuration>
<workingDirectory>target/gulp-build/</workingDirectory>
Expand Down
1 change: 0 additions & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,6 @@
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.2.12</version>
<configuration>
<imageName>hawkular:snapshot</imageName>
<dockerDirectory>docker</dockerDirectory>
Expand Down
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@

<properties>

<!-- Maven Plugin versions -->
<version.com.github.eirslett.frontend-maven-plugin>0.0.26</version.com.github.eirslett.frontend-maven-plugin>
<version.com.spotify.docker-maven-plugin>0.2.12</version.com.spotify.docker-maven-plugin>

<!-- DEPENDENCY VERSIONS -->

<!-- CONVENTIONS: -->
Expand Down Expand Up @@ -218,4 +222,24 @@
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
<plugins>

<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${version.com.github.eirslett.frontend-maven-plugin}</version>
</plugin>

<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${version.com.spotify.docker-maven-plugin}</version>
</plugin>

</plugins>
</pluginManagement>
</build>

</project>

0 comments on commit 38aa976

Please sign in to comment.