|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.github.salesforce-marketingcloud</groupId> |
5 | 5 | <artifactId>fuelsdk</artifactId> |
6 | | - <version>1.5.0</version> |
| 6 | + <version>1.5.1</version> |
7 | 7 | <name>Salesforce Marketing Cloud Java SDK</name> |
8 | 8 | <description>Salesforce Marketing Cloud Java SDK</description> |
9 | 9 | <url>https://github.com/salesforce-marketingcloud/FuelSDK-Java</url> |
|
28 | 28 | <url>git@github.com:salesforce-marketingcloud/FuelSDK-Java</url> |
29 | 29 | </scm> |
30 | 30 | <properties> |
| 31 | + <maven.compiler.source>1.6</maven.compiler.source> |
| 32 | + <maven.compiler.target>1.6</maven.compiler.target> |
31 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
32 | 34 | <beanutils.version>1.9.2</beanutils.version> |
33 | 35 | <cxf.version>3.1.2</cxf.version> |
|
36 | 38 | <junit.version>4.12</junit.version> |
37 | 39 | <lang.version>2.6</lang.version> |
38 | 40 | <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> |
39 | 45 | </properties> |
40 | 46 | <dependencies> |
41 | 47 | <dependency> |
|
47 | 53 | <groupId>org.apache.cxf</groupId> |
48 | 54 | <artifactId>cxf-rt-frontend-jaxws</artifactId> |
49 | 55 | <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> |
50 | 66 | </dependency> |
51 | 67 | <dependency> |
52 | 68 | <groupId>org.apache.cxf</groupId> |
|
63 | 79 | <artifactId>cxf-xjc-runtime</artifactId> |
64 | 80 | <version>${cxf-xjc.version}</version> |
65 | 81 | </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> |
66 | 113 | <dependency> |
67 | 114 | <groupId>com.google.code.gson</groupId> |
68 | 115 | <artifactId>gson</artifactId> |
|
227 | 274 | <artifactId>cxf-xjc-ts</artifactId> |
228 | 275 | <version>${cxf-xjc.version}</version> |
229 | 276 | </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> |
230 | 302 | </dependencies> |
231 | 303 | </plugin> |
232 | 304 | <plugin> |
|
0 commit comments