ACTIVEMQ6-62 Remove unneeded dependency on jackson

This commit is contained in:
jbertram 2014-12-19 11:51:17 -06:00
parent 16d74b2bec
commit f0d1881667
6 changed files with 0 additions and 18 deletions

View File

@ -22,11 +22,6 @@
<artifactId>activemq-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
</dependency>
</dependencies>
<build>

View File

@ -16,8 +16,6 @@
*/
package org.apache.activemq.dto;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
@ -27,7 +25,6 @@ import java.util.List;
@XmlRootElement(name = "broker")
@XmlAccessorType(XmlAccessType.FIELD)
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, include = JsonTypeInfo.As.PROPERTY, property = "@class")
public class BrokerDTO
{

View File

@ -16,15 +16,12 @@
*/
package org.apache.activemq.dto;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
@XmlType(name = "security")
@XmlAccessorType(XmlAccessType.FIELD)
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, include = JsonTypeInfo.As.PROPERTY, property = "@class")
public class SecurityDTO
{
}

View File

@ -136,11 +136,6 @@
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>

View File

@ -44,7 +44,6 @@
<include>io.airlift:airline</include>
<include>com.google.guava:guava</include>
<include>javax.inject:javax.inject</include>
<include>com.fasterxml.jackson.core:jackson-*</include>
<include>org.eclipse.jetty.aggregate:jetty-all-server</include>
<include>org.apache.geronimo.specs:geronimo-servlet_3.0_spec</include>
</includes>

View File

@ -41,7 +41,6 @@
(${activemq.version.versionName}, ${activemq.version.incrementingVersion})
</ActiveMQ-Version>
<resteasy.version>3.0.9.Final</resteasy.version>
<jackson-databind.version>2.3.1</jackson-databind.version>
<skipUnitTests>true</skipUnitTests>
<skipJmsTests>true</skipJmsTests>
<skipBytemanTests>true</skipBytemanTests>