Author: rwesten
Date: Mon Jun 27 13:40:16 2011
New Revision: 1140157

URL: http://svn.apache.org/viewvc?rev=1140157&view=rev
Log:
Modifications to speed-up builds on the Jenkins Server

* removed the Entityhub specific launcher (use the full launcher for now and 
the stable launcher as soon as STANBOL-241 is resolved)
* removed the assembly:single goal from the packaging phase of the dbpedia, 
dblp and genericRdf indexing tools. Users need now to call this manually
* updated the readme files do reflect this change.

based on the durations of [build 
248](https://builds.apache.org/job/stanbol-trunk-1.6/248/) this should reduce 
the build-time by up to 22 minutes.

Removed:
    incubator/stanbol/trunk/entityhub/launchers/
Modified:
    incubator/stanbol/trunk/entityhub/indexing/dblp/README.md
    incubator/stanbol/trunk/entityhub/indexing/dblp/pom.xml
    incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md
    incubator/stanbol/trunk/entityhub/indexing/dbpedia/pom.xml
    incubator/stanbol/trunk/entityhub/indexing/genericrdf/README.md
    incubator/stanbol/trunk/entityhub/indexing/genericrdf/pom.xml
    incubator/stanbol/trunk/entityhub/pom.xml

Modified: incubator/stanbol/trunk/entityhub/indexing/dblp/README.md
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/dblp/README.md?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/dblp/README.md (original)
+++ incubator/stanbol/trunk/entityhub/indexing/dblp/README.md Mon Jun 27 
13:40:16 2011
@@ -9,7 +9,11 @@ If not yet build by the built process of
 
     mvn install
 
-in this directory.
+in this directory and than
+
+    mvn -o assembly:single
+    
+to build the jar with all the dependencies used later for indexing.
 
 If the build succeeds go to the /target directory and copy the
 

Modified: incubator/stanbol/trunk/entityhub/indexing/dblp/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/dblp/pom.xml?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/dblp/pom.xml (original)
+++ incubator/stanbol/trunk/entityhub/indexing/dblp/pom.xml Mon Jun 27 13:40:16 
2011
@@ -352,7 +352,7 @@
                                                <id>make-assembly</id> <!-- 
this is used for inheritance merges -->
                                                <phase>package</phase> <!-- 
bind to the packaging phase -->
                                                <goals>
-                                                       <goal>single</goal>
+                                                       <!-- goal>single</goal 
-->
                                                </goals>
                                        </execution>
                                </executions>

Modified: incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md (original)
+++ incubator/stanbol/trunk/entityhub/indexing/dbpedia/README.md Mon Jun 27 
13:40:16 2011
@@ -8,7 +8,11 @@ If not yet build by the built process of
 
     mvn install
 
-in this directory.
+in this directory and than
+
+    mvn -o assembly:single
+    
+to build the jar with all the dependencies used later for indexing.
 
 If the build succeeds go to the /target directory and copy the
 

Modified: incubator/stanbol/trunk/entityhub/indexing/dbpedia/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/dbpedia/pom.xml?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/dbpedia/pom.xml (original)
+++ incubator/stanbol/trunk/entityhub/indexing/dbpedia/pom.xml Mon Jun 27 
13:40:16 2011
@@ -355,7 +355,7 @@
                                                <id>make-assembly</id> <!-- 
this is used for inheritance merges -->
                                                <phase>package</phase> <!-- 
bind to the packaging phase -->
                                                <goals>
-                                                       <goal>single</goal>
+                                                       <!-- goal>single</goal 
-->
                                                </goals>
                                        </execution>
                                </executions>

Modified: incubator/stanbol/trunk/entityhub/indexing/genericrdf/README.md
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/genericrdf/README.md?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/genericrdf/README.md (original)
+++ incubator/stanbol/trunk/entityhub/indexing/genericrdf/README.md Mon Jun 27 
13:40:16 2011
@@ -9,7 +9,11 @@ If not yet build by the built process of
 
     mvn install
 
-in this directory.
+in this directory and than
+
+    mvn -o assembly:single
+    
+to build the jar with all the dependencies used later for indexing.
 
 If the build succeeds go to the /target directory and copy the
 

Modified: incubator/stanbol/trunk/entityhub/indexing/genericrdf/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/genericrdf/pom.xml?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/indexing/genericrdf/pom.xml (original)
+++ incubator/stanbol/trunk/entityhub/indexing/genericrdf/pom.xml Mon Jun 27 
13:40:16 2011
@@ -362,7 +362,7 @@
                                                <id>make-assembly</id> <!-- 
this is used for inheritance merges -->
                                                <phase>package</phase> <!-- 
bind to the packaging phase -->
                                                <goals>
-                                                       <goal>single</goal>
+                                                       <!-- goal>single</goal 
-->
                                                </goals>
                                        </execution>
                                </executions>

Modified: incubator/stanbol/trunk/entityhub/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/pom.xml?rev=1140157&r1=1140156&r2=1140157&view=diff
==============================================================================
--- incubator/stanbol/trunk/entityhub/pom.xml (original)
+++ incubator/stanbol/trunk/entityhub/pom.xml Mon Jun 27 13:40:16 2011
@@ -60,7 +60,9 @@
     <module>yard/clerezza</module>
     <module>yard/solr</module>
     <module>jersey</module>
+    <!-- deleted use the Stanbol Full launcher instead 
     <module>launchers/sling</module>
+    -->
     <!-- Utils for createing local caches (indexing utils) -->
     <module>indexing</module>
   </modules>


Reply via email to