Skip to content

Commit

Permalink
Merge pull request #35 from misdoro/master
Browse files Browse the repository at this point in the history
Update maven poms to use the latest jaxb-ri and jaxws-ri
  • Loading branch information
nicolasmoreau committed Oct 21, 2015
2 parents aa00759 + babb7d2 commit 50b38e8
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 11 deletions.
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@

<properties>
<context>portal</context>
<junit.version>4.10</junit.version>
<junit.version>4.12</junit.version>
<jaxb.version>2.2.11</jaxb.version>
<jaxws.version>2.2.10</jaxws.version>
<hibernate-commons-annotations.version>3.3.0.ga</hibernate-commons-annotations.version>
<registry-client.version>12.07r1-SNAPSHOT</registry-client.version>
<registry-client.version>12.07r2-SNAPSHOT</registry-client.version>
<query-parser.version>12.07</query-parser.version>
<dictionary.version>12.07r1-SNAPSHOT</dictionary.version>
<dictionary.version>12.07r2-SNAPSHOT</dictionary.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
28 changes: 26 additions & 2 deletions portal.ear/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>2.1.7</version>
<scope>provided</scope>
<version>2.2.10</version>
</dependency>

<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
Expand Down Expand Up @@ -90,4 +90,28 @@
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>${jaxws.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
23 changes: 17 additions & 6 deletions portal.ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,9 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>2.1.7</version>
<scope>provided</scope>
</dependency>



<dependency>
<groupId>javax.measure</groupId>
<artifactId>jsr-275</artifactId>
Expand Down Expand Up @@ -152,4 +149,18 @@

</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>${jaxws.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 50b38e8

Please sign in to comment.