diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2018-07-14 13:49:04 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2018-07-14 13:49:10 -0700 |
commit | ca7ba1eaac8eeef2239b2637919ec9cb51432580 (patch) | |
tree | 800dbd1753814c51b132ccbaea96ec9fe207387a /pom.xml | |
parent | 808c6323049c1efff52f20d872813f86e21c5b37 (diff) |
Release 1.3
Note: adding proper dependencies on JAXB.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -6,7 +6,7 @@ <groupId>com.p4square</groupId> <artifactId>ccbapi</artifactId> - <version>1.3-SNAPSHOT</version> + <version>1.3</version> <name>cbb-api-java-client</name> <description>An unofficial Java library for accessing the Church Community Builder API.</description> @@ -26,6 +26,26 @@ </developers> <dependencies> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>2.2.11</version> + </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-core</artifactId> + <version>2.2.11</version> + </dependency> + <dependency> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-impl</artifactId> + <version>2.2.11</version> + </dependency> + <dependency> + <groupId>javax.activation</groupId> + <artifactId>activation</artifactId> + <version>1.1.1</version> + </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> |