Skip to content

Commit

Permalink
Changed Jaxb implementation to moxy
Browse files Browse the repository at this point in the history
  • Loading branch information
paveljandejsek committed Jun 20, 2019
1 parent 27ed25f commit a737e71
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,12 @@
<artifactId>saaj-impl</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.eclipse.persistence.jaxb.JAXBContextFactory
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.eclipse.persistence.jaxb.JAXBContextFactory
13 changes: 10 additions & 3 deletions jbehave-support-core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<version.commons-io>2.6</version.commons-io>
<version.crash>1.3.2</version.crash>
<version.jaxb-api>2.3.1</version.jaxb-api>
<version.moxy>2.7.4</version.moxy>
<version.mail-api>1.6.2</version.mail-api>
<version.javax-activation>1.2.0</version.javax-activation>
<version.javax.xml.soap-api>1.4.0</version.javax.xml.soap-api>
<version.saaj-impl>1.5.1</version.saaj-impl>
Expand Down Expand Up @@ -85,9 +87,14 @@
<version>${version.saaj-impl}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${version.jaxb-api}</version>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
<version>${version.moxy}</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>${version.mail-api}</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
Expand Down
4 changes: 2 additions & 2 deletions jbehave-support-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@
<artifactId>saaj-impl</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.eclipse.persistence.jaxb.JAXBContextFactory
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
<version.javax.xml.soap-api>1.4.0</version.javax.xml.soap-api>
<version.javax.annotation-api>1.3.2</version.javax.annotation-api>
<version.jaxb-api>2.3.1</version.jaxb-api>
<version.moxy>2.7.4</version.moxy>
<version.saaj-impl>1.5.1</version.saaj-impl>
<version.javax-activation>1.2.0</version.javax-activation>

Expand Down Expand Up @@ -401,9 +402,9 @@
<version>${version.saaj-impl}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${version.jaxb-api}</version>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.moxy</artifactId>
<version>${version.moxy}</version>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
Expand Down

0 comments on commit a737e71

Please sign in to comment.