You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by wi...@apache.org on 2018/01/30 04:36:44 UTC

[1/2] commons-rdf git commit: COMMONSRDF-67

Repository: commons-rdf
Updated Branches:
  refs/heads/master 177c3188b -> 44e4e701d


COMMONSRDF-67

The current japicmp maven plugin requires a number of javaee
libraries that are not available on JDK 9. Until this is fixed
in the upstream project, this adds the required dependencies
for the plugin so that commons-rdf can be built on JDK 9.


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

Branch: refs/heads/master
Commit: 5cbfd5105e8523556116918c1068f34f38fea2e7
Parents: 13f7192
Author: Aaron Coburn <ac...@amherst.edu>
Authored: Mon Nov 20 14:57:30 2017 -0500
Committer: Aaron Coburn <ac...@amherst.edu>
Committed: Mon Nov 20 15:03:03 2017 -0500

----------------------------------------------------------------------
 pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/5cbfd510/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e9722e4..092ff3d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,7 @@
         <commons.jira.id>COMMONSRDF</commons.jira.id>
         <commons.jira.pid>12316620</commons.jira.pid>
         <commons.site.path>rdf</commons.site.path>
+        <commons.jacoco.version>0.7.9</commons.jacoco.version>
 	    <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-rdf/</commons.scmPubUrl>
         <!--
         <commons.scmPubCheckoutDirectory>${project.build.directory}/site-content</commons.scmPubCheckoutDirectory>
@@ -473,6 +474,24 @@
                             <ignoreMissingNewVersion>true</ignoreMissingNewVersion>
                         </parameter>
                     </configuration>
+                    <dependencies>
+                      <dependency>
+                        <!-- the current version of japicmp on JDK 9 requires the following javaee libraries -->
+                        <groupId>javax.xml.bind</groupId>
+                        <artifactId>jaxb-api</artifactId>
+                        <version>2.3.0</version>
+                      </dependency>
+                      <dependency>
+                        <groupId>javax.activation</groupId>
+                        <artifactId>activation</artifactId>
+                        <version>1.1.1</version>
+                      </dependency>
+                      <dependency>
+                        <groupId>org.glassfish.jaxb</groupId>
+                        <artifactId>jaxb-runtime</artifactId>
+                        <version>2.3.0</version>
+                      </dependency>
+                    </dependencies>
                 </plugin>
                 <!--
                 <plugin>


[2/2] commons-rdf git commit: COMMONSRDF-67: making our build compatible with jdk9, closes #47

Posted by wi...@apache.org.
COMMONSRDF-67: making our build compatible with jdk9, closes #47

* acoburn/COMMONSRDF-67:
  COMMONSRDF-67

Signed-off-by: Sergio Fernández <wi...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/44e4e701
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/44e4e701
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/44e4e701

Branch: refs/heads/master
Commit: 44e4e701d50bfe67183330b693854ee2d59a5305
Parents: 177c318 5cbfd51
Author: Sergio Fernández <wi...@apache.org>
Authored: Mon Jan 29 20:36:26 2018 -0800
Committer: Sergio Fernández <wi...@apache.org>
Committed: Mon Jan 29 20:36:26 2018 -0800

----------------------------------------------------------------------
 pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/44e4e701/pom.xml
----------------------------------------------------------------------