Skip to content

Commit

Permalink
Remove target directories and fix Maven parent project WARNs
Browse files Browse the repository at this point in the history
  • Loading branch information
lewismc committed Mar 9, 2017
1 parent e5d4828 commit 5ae4938
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.class
**/target

# Mobile Tools for Java (J2ME)
.mtj.tmp/
Expand Down
14 changes: 7 additions & 7 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,21 +132,21 @@
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-opsui</artifactId>
<artifactId>${project.parent.artifactId}-opsui</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/opsui</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-pcs-services</artifactId>
<artifactId>${project.parent.artifactId}-pcs-services</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/pcs</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-fmprod</artifactId>
<artifactId>${project.parent.artifactId}-fmprod</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/fmprod</outputDirectory>
Expand Down Expand Up @@ -287,28 +287,28 @@
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-opsui</artifactId>
<artifactId>${project.parent.artifactId}-opsui</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/opsui</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-pcs-services</artifactId>
<artifactId>${project.parent.artifactId}-pcs-services</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/pcs</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-fmprod</artifactId>
<artifactId>${project.parent.artifactId}-fmprod</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/fmprod</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.github.capstone-coal</groupId>
<artifactId>${parent.artifactId}-solr-webapp</artifactId>
<artifactId>${project.parent.artifactId}-solr-webapp</artifactId>
<type>war</type>
<overWrite>false</overWrite>
<outputDirectory>${project.build.directory}/apache-tomcat-${tomcat.version}/webapps/solr</outputDirectory>
Expand Down
8 changes: 4 additions & 4 deletions distribution/src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@
<useProjectArtifact>false</useProjectArtifact>
<useTransitiveDependencies>false</useTransitiveDependencies>
<excludes>
<exclude>${groupId}:${parent.artifactId}-opsui</exclude>
<exclude>${groupId}:${parent.artifactId}-pcs-services</exclude>
<exclude>${groupId}:${parent.artifactId}-fmprod</exclude>
<exclude>${groupId}:${parent.artifactId}-solr-webapp</exclude>
<exclude>${groupId}:${project.parent.artifactId}-opsui</exclude>
<exclude>${groupId}:${project.parent.artifactId}-pcs-services</exclude>
<exclude>${groupId}:${project.parent.artifactId}-fmprod</exclude>
<exclude>${groupId}:${project.parent.artifactId}-solr-webapp</exclude>
</excludes>
</dependencySet>
</dependencySets>
Expand Down

0 comments on commit 5ae4938

Please sign in to comment.