Skip to content

Commit

Permalink
Removed unnecessary data from pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
javahometech authored Apr 4, 2018
1 parent f950e75 commit 5f5690e
Showing 1 changed file with 3 additions and 54 deletions.
57 changes: 3 additions & 54 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@
<groupId>in.javahome</groupId>
<artifactId>myweb</artifactId>
<packaging>war</packaging>
<version>0.13.0-SNAPSHOT</version>
<name>myweb aplication</name>
<url>http://maven.apache.org</url>
<properties>
<docker.image.prefix>kammana</docker.image.prefix>
</properties>
<version>0.0.1</version>
<name>my-app</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
Expand All @@ -26,39 +23,8 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.0.6</version>
</dependency>

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.7</version>
</dependency>


<!-- <dependency>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-jacoco-listeners</artifactId>
<version>3.8</version>
<scope>test</scope>
</dependency> -->
</dependencies>

<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<url>http://52.33.227.37:8081/nexus/content/repositories/snapshots</url>
</snapshotRepository>

<repository>
<id>releases</id>
<url>http://52.33.227.37:8081/nexus/content/repositories/releases</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand All @@ -75,23 +41,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.4.11</version>
<configuration>
<imageName>${docker.image.prefix}/${project.artifactId}:${project.version}</imageName>
<dockerDirectory>.</dockerDirectory>
<serverId>docker-hub</serverId>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.build.directory}</directory>
<include>${project.build.finalName}.war</include>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 5f5690e

Please sign in to comment.