Skip to content

Commit

Permalink
Make it pretty again
Browse files Browse the repository at this point in the history
  • Loading branch information
DSH105 committed Aug 4, 2014
1 parent 816fad2 commit e6e331b
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,13 @@
<scope>test</scope>
</dependency>
</dependencies>

<!-- Build -->
<build>
<defaultGoal>clean test package install</defaultGoal>
<finalName>${project.name}</finalName>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>

<!-- Filter resources -->
<resources>
<resource>
Expand All @@ -114,13 +116,7 @@
</includes>
</resource>
</resources>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>2.5</version>
</extension>
</extensions>

<!-- Plugins -->
<plugins>
<!-- Clean up-->
Expand Down Expand Up @@ -151,6 +147,7 @@
</execution>
</executions>
</plugin>

<!-- Compiler -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -160,6 +157,7 @@
<target>1.7</target>
</configuration>
</plugin>

<!-- Jar-Filler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -173,6 +171,7 @@
</archive>
</configuration>
</plugin>

<!-- Shade -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -197,9 +196,12 @@
</execution>
</executions>
</plugin>

<!-- JavaDoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -209,6 +211,8 @@
</execution>
</executions>
</plugin>

<!-- Deploy -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
Expand All @@ -223,7 +227,17 @@
</executions>
</plugin>
</plugins>

<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>2.5</version>
</extension>
</extensions>
</build>

<!-- Distribution -->
<distributionManagement>
<repository>
<id>dsh105-ftp</id>
Expand Down

0 comments on commit e6e331b

Please sign in to comment.