Skip to content
Snippets Groups Projects
Commit 05908e7e authored by Christian Wulf's avatar Christian Wulf
Browse files

newlines

parent 9406ccf1
No related branches found
No related tags found
No related merge requests found
...@@ -31,5 +31,6 @@ ...@@ -31,5 +31,6 @@
<nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.jdt.core.javanature</nature>
<nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature> <nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature>
<nature>net.sourceforge.pmd.eclipse.plugin.pmdNature</nature> <nature>net.sourceforge.pmd.eclipse.plugin.pmdNature</nature>
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
</natures> </natures>
</projectDescription> </projectDescription>
#FindBugs User Preferences #FindBugs User Preferences
#Tue Nov 25 12:10:00 CET 2014 #Tue Dec 16 13:41:22 CET 2014
detector_threshold=3 detector_threshold=3
effort=max effort=max
excludefilter0=.fbExcludeFilterFile|true excludefilter0=.fbExcludeFilterFile|true
......
...@@ -111,7 +111,6 @@ ...@@ -111,7 +111,6 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version> <version>3.1</version>
<configuration> <configuration>
<source>${java.version}</source> <source>${java.version}</source>
<target>${java.version}</target> <target>${java.version}</target>
...@@ -160,8 +159,6 @@ ...@@ -160,8 +159,6 @@
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.sonatype.plugins</groupId> <groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId> <artifactId>nexus-staging-maven-plugin</artifactId>
...@@ -174,27 +171,11 @@ ...@@ -174,27 +171,11 @@
</configuration> </configuration>
</plugin> </plugin>
<!-- <plugin> -->
<!-- <groupId>org.apache.maven.plugins</groupId> -->
<!-- <artifactId>maven-shade-plugin</artifactId> -->
<!-- <executions> -->
<!-- <execution> -->
<!-- <phase>package</phase> -->
<!-- <goals> -->
<!-- <goal>shade</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
<!-- <configuration> -->
<!-- <finalName>${project.artifactId}-${project.version}-with-dependencies</finalName> -->
<!-- </configuration> -->
<!-- </plugin> -->
<!-- Checkstyle --> <!-- Checkstyle -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId> <artifactId>maven-checkstyle-plugin</artifactId>
<version>2.13</version> <version>2.12</version>
<executions> <executions>
<execution> <execution>
<phase>test</phase> <phase>test</phase>
...@@ -224,7 +205,7 @@ ...@@ -224,7 +205,7 @@
<threshold>Low</threshold> <threshold>Low</threshold>
<includeTests>true</includeTests> <includeTests>true</includeTests>
<failOnError>false</failOnError> <failOnError>false</failOnError>
<excludeFilterFile>${project.basedir}/conf/quality-config/fb-filter.xml</excludeFilterFile> <excludeFilterFile>${basedir}/conf/quality-config/fb-filter.xml</excludeFilterFile>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
...@@ -244,7 +225,7 @@ ...@@ -244,7 +225,7 @@
<configuration> <configuration>
<rulesets> <rulesets>
<ruleset>${project.basedir}/conf/quality-config/pmd-ruleset.xml</ruleset> <ruleset>${basedir}/conf/quality-config/pmd-ruleset.xml</ruleset>
</rulesets> </rulesets>
<includeTests>true</includeTests> <includeTests>true</includeTests>
<targetJdk>${java.version}</targetJdk> <targetJdk>${java.version}</targetJdk>
...@@ -296,6 +277,24 @@ ...@@ -296,6 +277,24 @@
<reporting> <reporting>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.11</version>
<configuration>
<issueLinkTemplatePerSystem>
<Gitlab>%URL%/%ISSUE%</Gitlab>
</issueLinkTemplatePerSystem>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!-- Checkstyle -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId> <artifactId>maven-checkstyle-plugin</artifactId>
...@@ -349,8 +348,6 @@ ...@@ -349,8 +348,6 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<activation>
</activation>
</profile> </profile>
<profile> <profile>
<id>signing</id> <id>signing</id>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment