Skip to content
This repository was archived by the owner on Jan 19, 2024. It is now read-only.

Commit b11da92

Browse files
authored
added required dependencies for Java 11 (#125)
1 parent f6b7ad9 commit b11da92

1 file changed

Lines changed: 73 additions & 1 deletion

File tree

pom.xml

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.github.salesforce-marketingcloud</groupId>
55
<artifactId>fuelsdk</artifactId>
6-
<version>1.5.0</version>
6+
<version>1.5.1</version>
77
<name>Salesforce Marketing Cloud Java SDK</name>
88
<description>Salesforce Marketing Cloud Java SDK</description>
99
<url>https://github.com/salesforce-marketingcloud/FuelSDK-Java</url>
@@ -28,6 +28,8 @@
2828
<url>git@github.com:salesforce-marketingcloud/FuelSDK-Java</url>
2929
</scm>
3030
<properties>
31+
<maven.compiler.source>1.6</maven.compiler.source>
32+
<maven.compiler.target>1.6</maven.compiler.target>
3133
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3234
<beanutils.version>1.9.2</beanutils.version>
3335
<cxf.version>3.1.2</cxf.version>
@@ -36,6 +38,10 @@
3638
<junit.version>4.12</junit.version>
3739
<lang.version>2.6</lang.version>
3840
<log4j.version>1.2.17</log4j.version>
41+
<javax.jaxb.version>2.3.0</javax.jaxb.version>
42+
<com.sun.jaxb.version>2.3.0</com.sun.jaxb.version>
43+
<com.sun.saaj.version>1.5.0</com.sun.saaj.version>
44+
<javax.jaxws.version>2.2.6</javax.jaxws.version>
3945
</properties>
4046
<dependencies>
4147
<dependency>
@@ -47,6 +53,16 @@
4753
<groupId>org.apache.cxf</groupId>
4854
<artifactId>cxf-rt-frontend-jaxws</artifactId>
4955
<version>${cxf.version}</version>
56+
<exclusions>
57+
<exclusion>
58+
<groupId>com.sun.xml.bind</groupId>
59+
<artifactId>jaxb-impl</artifactId>
60+
</exclusion>
61+
<exclusion>
62+
<groupId>com.sun.xml.bind</groupId>
63+
<artifactId>jaxb-core</artifactId>
64+
</exclusion>
65+
</exclusions>
5066
</dependency>
5167
<dependency>
5268
<groupId>org.apache.cxf</groupId>
@@ -63,6 +79,37 @@
6379
<artifactId>cxf-xjc-runtime</artifactId>
6480
<version>${cxf-xjc.version}</version>
6581
</dependency>
82+
<dependency>
83+
<groupId>javax.xml.bind</groupId>
84+
<artifactId>jaxb-api</artifactId>
85+
<version>${javax.jaxb.version}</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>com.sun.xml.bind</groupId>
89+
<artifactId>jaxb-core</artifactId>
90+
<version>${com.sun.jaxb.version}</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>com.sun.xml.bind</groupId>
94+
<artifactId>jaxb-impl</artifactId>
95+
<version>${com.sun.jaxb.version}</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>com.sun.xml.messaging.saaj</groupId>
99+
<artifactId>saaj-impl</artifactId>
100+
<version>${com.sun.saaj.version}</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>javax.xml.ws</groupId>
104+
<artifactId>jaxws-api</artifactId>
105+
<version>${javax.jaxws.version}</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>com.sun.xml.ws</groupId>
109+
<artifactId>jaxws-ri</artifactId>
110+
<version>2.3.3</version>
111+
<type>pom</type>
112+
</dependency>
66113
<dependency>
67114
<groupId>com.google.code.gson</groupId>
68115
<artifactId>gson</artifactId>
@@ -227,6 +274,31 @@
227274
<artifactId>cxf-xjc-ts</artifactId>
228275
<version>${cxf-xjc.version}</version>
229276
</dependency>
277+
<dependency>
278+
<groupId>javax.xml.bind</groupId>
279+
<artifactId>jaxb-api</artifactId>
280+
<version>${javax.jaxb.version}</version>
281+
</dependency>
282+
<dependency>
283+
<groupId>com.sun.xml.bind</groupId>
284+
<artifactId>jaxb-core</artifactId>
285+
<version>${com.sun.jaxb.version}</version>
286+
</dependency>
287+
<dependency>
288+
<groupId>com.sun.xml.bind</groupId>
289+
<artifactId>jaxb-impl</artifactId>
290+
<version>${com.sun.jaxb.version}</version>
291+
</dependency>
292+
<dependency>
293+
<groupId>com.sun.xml.messaging.saaj</groupId>
294+
<artifactId>saaj-impl</artifactId>
295+
<version>${com.sun.saaj.version}</version>
296+
</dependency>
297+
<dependency>
298+
<groupId>javax.xml.ws</groupId>
299+
<artifactId>jaxws-api</artifactId>
300+
<version>${javax.jaxws.version}</version>
301+
</dependency>
230302
</dependencies>
231303
</plugin>
232304
<plugin>

0 commit comments

Comments
 (0)