Repository: empire-db Updated Branches: refs/heads/master 73f8c008e -> fd54d22df
update maven plugins + more git ignores Project: http://git-wip-us.apache.org/repos/asf/empire-db/repo Commit: http://git-wip-us.apache.org/repos/asf/empire-db/commit/fd54d22d Tree: http://git-wip-us.apache.org/repos/asf/empire-db/tree/fd54d22d Diff: http://git-wip-us.apache.org/repos/asf/empire-db/diff/fd54d22d Branch: refs/heads/master Commit: fd54d22df84c208fe680bf0493a4807691043e17 Parents: 73f8c00 Author: Francis De Brabandere <[email protected]> Authored: Wed Jul 29 09:29:18 2015 +0200 Committer: Francis De Brabandere <[email protected]> Committed: Wed Jul 29 09:29:18 2015 +0200 ---------------------------------------------------------------------- .gitignore | 9 ++++++++- pom.xml | 19 +++++++++++-------- 2 files changed, 19 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/empire-db/blob/fd54d22d/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 988e912..1eae4dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,10 @@ +# Eclipse /.settings/ /.project -/target/ + +# Maven +target/ + +# IntelliJ IDEA +.idea/ +*.iml http://git-wip-us.apache.org/repos/asf/empire-db/blob/fd54d22d/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0cc18c5..c4a701a 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> - <version>14</version> + <version>17</version> </parent> <groupId>org.apache.empire-db</groupId> @@ -48,6 +48,10 @@ <maven.compile.target>1.5</maven.compile.target> <disclaimer.dir>{project.basedir}</disclaimer.dir> </properties> + + <prerequisites> + <maven>3.0</maven> + </prerequisites> <profiles> <profile> @@ -384,7 +388,7 @@ <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> - <version>0.10</version> + <version>0.11</version> <configuration> <excludes> <!-- This might be to generic --> @@ -504,7 +508,7 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> - <version>1.11</version> + <version>1.14</version> <executions> <execution> <id>check-api</id> @@ -573,7 +577,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> - <version>2.7</version> + <version>2.8</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> @@ -603,17 +607,16 @@ <targetJdk>1.5</targetJdk> </configuration> </plugin> - <!--Findbugs is broken in Java 8--> - <!--<plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> - <version>2.5.4</version> + <version>2.5.5</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <xmlOutput>true</xmlOutput> <omitVisitors>SerializableIdiom</omitVisitors> </configuration> - </plugin>--> + </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId>
