From 05908e7e3d14dbdd6a3cccef4b2ecc21e5ebbb68 Mon Sep 17 00:00:00 2001 From: Christian Wulf <chw@informatik.uni-kiel.de> Date: Tue, 16 Dec 2014 13:35:44 +0100 Subject: [PATCH] newlines --- .project | 1 + .settings/edu.umd.cs.findbugs.core.prefs | 2 +- pom.xml | 45 +++++++++++------------- 3 files changed, 23 insertions(+), 25 deletions(-) diff --git a/.project b/.project index 9c7a3eb0..05b8f2f4 100644 --- a/.project +++ b/.project @@ -31,5 +31,6 @@ <nature>org.eclipse.jdt.core.javanature</nature> <nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature> <nature>net.sourceforge.pmd.eclipse.plugin.pmdNature</nature> + <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> </natures> </projectDescription> diff --git a/.settings/edu.umd.cs.findbugs.core.prefs b/.settings/edu.umd.cs.findbugs.core.prefs index 272829c9..d15a5b43 100644 --- a/.settings/edu.umd.cs.findbugs.core.prefs +++ b/.settings/edu.umd.cs.findbugs.core.prefs @@ -1,5 +1,5 @@ #FindBugs User Preferences -#Tue Nov 25 12:10:00 CET 2014 +#Tue Dec 16 13:41:22 CET 2014 detector_threshold=3 effort=max excludefilter0=.fbExcludeFilterFile|true diff --git a/pom.xml b/pom.xml index 63f175d6..40badc06 100644 --- a/pom.xml +++ b/pom.xml @@ -111,7 +111,6 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> - <configuration> <source>${java.version}</source> <target>${java.version}</target> @@ -160,8 +159,6 @@ </executions> </plugin> - - <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> @@ -174,27 +171,11 @@ </configuration> </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 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <version>2.13</version> + <version>2.12</version> <executions> <execution> <phase>test</phase> @@ -224,7 +205,7 @@ <threshold>Low</threshold> <includeTests>true</includeTests> <failOnError>false</failOnError> - <excludeFilterFile>${project.basedir}/conf/quality-config/fb-filter.xml</excludeFilterFile> + <excludeFilterFile>${basedir}/conf/quality-config/fb-filter.xml</excludeFilterFile> </configuration> <executions> <execution> @@ -244,7 +225,7 @@ <configuration> <rulesets> - <ruleset>${project.basedir}/conf/quality-config/pmd-ruleset.xml</ruleset> + <ruleset>${basedir}/conf/quality-config/pmd-ruleset.xml</ruleset> </rulesets> <includeTests>true</includeTests> <targetJdk>${java.version}</targetJdk> @@ -296,6 +277,24 @@ <reporting> <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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> @@ -349,8 +348,6 @@ </plugin> </plugins> </build> - <activation> - </activation> </profile> <profile> <id>signing</id> -- GitLab