Skip to content

Commit

Permalink
Merge pull request naver#315 from naver/feature/clean-up-pom
Browse files Browse the repository at this point in the history
Remove unnecessary pom configuration
  • Loading branch information
donggyu04 authored Aug 17, 2018
2 parents dce7b09 + 0153f56 commit 01c3442
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 113 deletions.
3 changes: 1 addition & 2 deletions ngrinder-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<artifactId>ngrinder</artifactId>
<version>3.4.1-SNAPSHOT</version>
</parent>
<groupId>org.ngrinder</groupId>
<artifactId>ngrinder-starter</artifactId>

<dependencies>
Expand Down Expand Up @@ -68,4 +67,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
111 changes: 0 additions & 111 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,115 +137,4 @@
<version>2.6</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>javadoc</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-reactor-plugin</artifactId>
<version>1.0</version>
</plugin>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<includesTestSourceRoots>true</includesTestSourceRoots>
<generateHtml>true</generateHtml>
<generateXml>true</generateXml>
<jdk>${jdk-version}</jdk>
<excludes>
<exclude>liquibase/**/*.java</exclude>
<exclude>org/ngrinder/*/model/*.java</exclude>
<exclude>org/ngrinder/dns/*.java</exclude>
<exclude>org/ngrinder/sm/*.java</exclude>
<exclude>org/ngrinder/monitor/controller/model/*.java</exclude>
<exclude>org/hibernate/dialect/*.java</exclude>
<exclude>org/ngrinder/common/util/Preconditions.java</exclude>
<exclude>net/grinder/console/model/*.java</exclude>
<exclude>**/DavSvnController.java</exclude>
<exclude>**/Main.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<excludes>**/test/java/**/*.java</excludes>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<includesTestSourceRoots>true</includesTestSourceRoots>
<jdk>${jdk-version}</jdk>
<excludes>
<exclude>org/ngrinder/*/model/*.java</exclude>
<exclude>org/ngrinder/dns/*.java</exclude>
<exclude>org/ngrinder/sm/*.java</exclude>
<exclude>org/ngrinder/monitor/controller/model/*.java</exclude>
<exclude>org/hibernate/dialect/*.java</exclude>
<exclude>org/ngrinder/common/util/Preconditions.java</exclude>
<exclude>**/DavSvnController.java</exclude>
<exclude>**/Main.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
<configuration>
<excludes>**/test/java/**/*.java</excludes>
</configuration>
</plugin>
</plugins>
</reporting>

</project>

0 comments on commit 01c3442

Please sign in to comment.