You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2015/02/11 10:52:19 UTC

[1/3] jena git commit: name changed to "Apache Jena OSGi integration tests"

Repository: jena
Updated Branches:
  refs/heads/master 187783397 -> d40c2fa7c


name changed to "Apache Jena OSGi integration tests"


Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/5c3ea365
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/5c3ea365
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/5c3ea365

Branch: refs/heads/master
Commit: 5c3ea36593bd2fe8dbcba403a80ebc09f68a9789
Parents: 61ea8ee
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Tue Feb 10 13:18:43 2015 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Tue Feb 10 15:16:41 2015 +0000

----------------------------------------------------------------------
 apache-jena-osgi/jena-osgi-test/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/5c3ea365/apache-jena-osgi/jena-osgi-test/pom.xml
----------------------------------------------------------------------
diff --git a/apache-jena-osgi/jena-osgi-test/pom.xml b/apache-jena-osgi/jena-osgi-test/pom.xml
index 80d2b63..a0dc894 100644
--- a/apache-jena-osgi/jena-osgi-test/pom.xml
+++ b/apache-jena-osgi/jena-osgi-test/pom.xml
@@ -28,7 +28,7 @@ limitations under the License.
 
   <artifactId>jena-osgi-test</artifactId>
   <version>2.13.0-SNAPSHOT</version>
-  <name>Apache Jena - OSGi bundle tests</name>
+  <name>Apache Jena - OSGi integration tests</name>
   <description>Tests for jena-osgi as a bundle</description>
   <packaging>bundle</packaging>
 


[3/3] jena git commit: This closes #29

Posted by an...@apache.org.
This closes #29


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

Branch: refs/heads/master
Commit: d40c2fa7cce0d1879b6c492839c6e4dd5866bb35
Parents: 5c3ea36
Author: Andy Seaborne <an...@seaborne.org>
Authored: Wed Feb 11 09:51:27 2015 +0000
Committer: Andy Seaborne <an...@seaborne.org>
Committed: Wed Feb 11 09:51:27 2015 +0000

----------------------------------------------------------------------

----------------------------------------------------------------------



[2/3] jena git commit: jena-osgi-test compile+test only in integration phase

Posted by an...@apache.org.
jena-osgi-test compile+test only in integration phase

.. avoids compile errors on "mvn clean test"


Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/61ea8ee5
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/61ea8ee5
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/61ea8ee5

Branch: refs/heads/master
Commit: 61ea8ee594f1ec117ec6b68872284d94deccc725
Parents: 1877833
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Tue Feb 10 13:15:50 2015 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Tue Feb 10 15:16:41 2015 +0000

----------------------------------------------------------------------
 apache-jena-osgi/jena-osgi-test/pom.xml | 42 ++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/61ea8ee5/apache-jena-osgi/jena-osgi-test/pom.xml
----------------------------------------------------------------------
diff --git a/apache-jena-osgi/jena-osgi-test/pom.xml b/apache-jena-osgi/jena-osgi-test/pom.xml
index c0bc922..80d2b63 100644
--- a/apache-jena-osgi/jena-osgi-test/pom.xml
+++ b/apache-jena-osgi/jena-osgi-test/pom.xml
@@ -160,6 +160,48 @@ limitations under the License.
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <executions>
+          <execution>
+            <!-- delay test compilation until pre-integration-test phase -->
+            <id>default-testCompile</id>
+            <goals>
+              <goal>testCompile</goal>
+            </goals>
+            <phase>pre-integration-test</phase>
+          </execution>
+        </executions>
+        <configuration>
+        </configuration>
+
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <classpathDependencyExcludes>
+            <classpathDependencyExclude>org.slf4j:slf4j-log4j12</classpathDependencyExclude>
+          </classpathDependencyExcludes>
+          <systemPropertyVariables>
+            <!-- So the test can find the current version of jena-osgi -->
+            <jena-osgi.version>${project.version}</jena-osgi.version>
+            <!-- not so noisy OSGi logging -->
+            <org.ops4j.pax.logging.DefaultServiceLog.level>WARN</org.ops4j.pax.logging.DefaultServiceLog.level>
+          </systemPropertyVariables>
+        </configuration>
+        <executions>
+          <execution>
+            <id>default-test</id>
+            <goals>
+              <goal>test</goal>
+            </goals>
+            <!-- delay until integration-test phase -->
+            <phase>integration-test</phase>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>