ACTIVEMQ6-62 Remove unneeded dependency on jackson
This commit is contained in:
parent
16d74b2bec
commit
f0d1881667
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
1
pom.xml
1
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue