Allon Mureinik has uploaded a new change for review.

Change subject: packaging: provide activation.jar
......................................................................

packaging: provide activation.jar

activation.jar is required by hibernate-validator, which causes maven to
bring it as a transient dependency, even though it is part of the JDK.

Explicitly adding it to the root pom.xml and marking it as provided (in
a similar fashion to javax.transaction) makes sure it is not brought
twice.

Change-Id: If6bbed19bee01bcd76b15e709f50810b88aaa973
Signed-off-by: Allon Mureinik <[email protected]>
---
M pom.xml
1 file changed, 7 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/65/13665/1

diff --git a/pom.xml b/pom.xml
index 57c2802..07cac82 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,6 +50,7 @@
     <postgres.jdbc.version>9.1-901-1.jdbc4</postgres.jdbc.version>
     <commons-collections>3.1</commons-collections>
     <javax.transaction>1.1</javax.transaction>
+    <javax.activation.version>1.1</javax.activation.version>
     <xmlrpc-client.version>3.1.3</xmlrpc-client.version>
     <httpclient.version>3.1</httpclient.version>
     <spring.version>3.1.1.RELEASE</spring.version>
@@ -109,6 +110,12 @@
         <scope>provided</scope>
       </dependency>
       <dependency>
+        <groupId>javax.activation</groupId>
+        <artifactId>activation</artifactId>
+        <version>${javax.activation.version}</version>
+        <scope>provided</scope>
+      </dependency>
+      <dependency>
         <groupId>org.apache.xmlrpc</groupId>
         <artifactId>xmlrpc-client</artifactId>
         <version>${xmlrpc-client.version}</version>


--
To view, visit http://gerrit.ovirt.org/13665
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If6bbed19bee01bcd76b15e709f50810b88aaa973
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Allon Mureinik <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to