You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by le...@apache.org on 2016/07/16 20:38:35 UTC

nutch git commit: NUTCH-2292 Mavenize the build for nutch-core and nutch-plugins

Repository: nutch
Updated Branches:
  refs/heads/NUTCH-2292 0bf453e57 -> 6e0da2f4c


NUTCH-2292 Mavenize the build for nutch-core and nutch-plugins


Project: http://git-wip-us.apache.org/repos/asf/nutch/repo
Commit: http://git-wip-us.apache.org/repos/asf/nutch/commit/6e0da2f4
Tree: http://git-wip-us.apache.org/repos/asf/nutch/tree/6e0da2f4
Diff: http://git-wip-us.apache.org/repos/asf/nutch/diff/6e0da2f4

Branch: refs/heads/NUTCH-2292
Commit: 6e0da2f4c85d71c0078f935b1e3b72a91852d045
Parents: 0bf453e
Author: Lewis John McGibbney <le...@gmail.com>
Authored: Sat Jul 16 13:45:05 2016 -0700
Committer: Lewis John McGibbney <le...@gmail.com>
Committed: Sat Jul 16 13:45:05 2016 -0700

----------------------------------------------------------------------
 .gitignore            | 5 ++++-
 nutch-core/pom.xml    | 2 +-
 nutch-plugins/pom.xml | 2 +-
 pom.xml               | 1 +
 4 files changed, 7 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nutch/blob/6e0da2f4/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 7a70f9d..da7dacb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,4 +11,7 @@ logs/
 target/
 nutch-core/target
 nutch-plugins/target
-nutch-plugins/*/target
\ No newline at end of file
+nutch-plugins/*/target
+*.project
+*.settings
+*.classpath

http://git-wip-us.apache.org/repos/asf/nutch/blob/6e0da2f4/nutch-core/pom.xml
----------------------------------------------------------------------
diff --git a/nutch-core/pom.xml b/nutch-core/pom.xml
index 62e2e58..ec97b89 100644
--- a/nutch-core/pom.xml
+++ b/nutch-core/pom.xml
@@ -489,7 +489,7 @@
                             <resources>
                                 <resource>
                                     <directory>${project.build.directory}</directory>
-                                    <include>${build.finalName}.jar</include>
+                                    <include>${project.build.finalName}.jar</include>
                                 </resource>
                                 <resource>
                                     <directory>${project.basedir}</directory>

http://git-wip-us.apache.org/repos/asf/nutch/blob/6e0da2f4/nutch-plugins/pom.xml
----------------------------------------------------------------------
diff --git a/nutch-plugins/pom.xml b/nutch-plugins/pom.xml
index e07f487..68b21e6 100644
--- a/nutch-plugins/pom.xml
+++ b/nutch-plugins/pom.xml
@@ -139,7 +139,7 @@
                             <resources>
                                 <resource>
                                     <directory>${project.build.directory}</directory>
-                                    <include>${build.finalName}.jar</include>
+                                    <include>${project.build.finalName}.jar</include>
                                 </resource>
                                 <resource>
                                     <directory>${project.basedir}</directory>

http://git-wip-us.apache.org/repos/asf/nutch/blob/6e0da2f4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a3b9271..57e77d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,6 +25,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.5.1</version>
                 <configuration>
                     <source>1.7</source>
                     <target>1.7</target>