ACTIVEMQ6-62 Remove unneeded dependency on jackson
This commit is contained in:
parent
16d74b2bec
commit
f0d1881667
|
@ -22,11 +22,6 @@
|
||||||
<artifactId>activemq-commons</artifactId>
|
<artifactId>activemq-commons</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
|
||||||
<artifactId>jackson-databind</artifactId>
|
|
||||||
<version>${jackson-databind.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.dto;
|
package org.apache.activemq.dto;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonTypeInfo;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElementRef;
|
import javax.xml.bind.annotation.XmlElementRef;
|
||||||
|
@ -27,7 +25,6 @@ import java.util.List;
|
||||||
|
|
||||||
@XmlRootElement(name = "broker")
|
@XmlRootElement(name = "broker")
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, include = JsonTypeInfo.As.PROPERTY, property = "@class")
|
|
||||||
public class BrokerDTO
|
public class BrokerDTO
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -16,15 +16,12 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.dto;
|
package org.apache.activemq.dto;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonTypeInfo;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
@XmlType(name = "security")
|
@XmlType(name = "security")
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.CUSTOM, include = JsonTypeInfo.As.PROPERTY, property = "@class")
|
|
||||||
public class SecurityDTO
|
public class SecurityDTO
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,11 +136,6 @@
|
||||||
<groupId>org.apache.activemq</groupId>
|
<groupId>org.apache.activemq</groupId>
|
||||||
<artifactId>activemq-client</artifactId>
|
<artifactId>activemq-client</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
|
||||||
<artifactId>jackson-databind</artifactId>
|
|
||||||
<version>${jackson-databind.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.activemq</groupId>
|
<groupId>org.apache.activemq</groupId>
|
||||||
<artifactId>activemq-client</artifactId>
|
<artifactId>activemq-client</artifactId>
|
||||||
|
|
|
@ -44,7 +44,6 @@
|
||||||
<include>io.airlift:airline</include>
|
<include>io.airlift:airline</include>
|
||||||
<include>com.google.guava:guava</include>
|
<include>com.google.guava:guava</include>
|
||||||
<include>javax.inject:javax.inject</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.eclipse.jetty.aggregate:jetty-all-server</include>
|
||||||
<include>org.apache.geronimo.specs:geronimo-servlet_3.0_spec</include>
|
<include>org.apache.geronimo.specs:geronimo-servlet_3.0_spec</include>
|
||||||
</includes>
|
</includes>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -41,7 +41,6 @@
|
||||||
(${activemq.version.versionName}, ${activemq.version.incrementingVersion})
|
(${activemq.version.versionName}, ${activemq.version.incrementingVersion})
|
||||||
</ActiveMQ-Version>
|
</ActiveMQ-Version>
|
||||||
<resteasy.version>3.0.9.Final</resteasy.version>
|
<resteasy.version>3.0.9.Final</resteasy.version>
|
||||||
<jackson-databind.version>2.3.1</jackson-databind.version>
|
|
||||||
<skipUnitTests>true</skipUnitTests>
|
<skipUnitTests>true</skipUnitTests>
|
||||||
<skipJmsTests>true</skipJmsTests>
|
<skipJmsTests>true</skipJmsTests>
|
||||||
<skipBytemanTests>true</skipBytemanTests>
|
<skipBytemanTests>true</skipBytemanTests>
|
||||||
|
|
Loading…
Reference in New Issue