added jackson-core and jackson-databind
This commit is contained in:
parent
3225045008
commit
3e50775294
21
pom.xml
21
pom.xml
|
@ -27,7 +27,7 @@
|
|||
<properties>
|
||||
<serviceName>DataMiner</serviceName>
|
||||
<serviceClass>WPS</serviceClass>
|
||||
|
||||
|
||||
<webappDirectory>${project.basedir}/src/main/webapp/WEB-INF</webappDirectory>
|
||||
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
||||
<securityversion52n>2.2-M2</securityversion52n>
|
||||
|
@ -35,6 +35,7 @@
|
|||
<apache.ode.version>1.3.3</apache.ode.version>
|
||||
<apache.axis2.version>1.5.1</apache.axis2.version>
|
||||
<n52version>3.6.3</n52version>
|
||||
<jackson.version>2.8.11</jackson.version>
|
||||
|
||||
</properties>
|
||||
|
||||
|
@ -132,7 +133,25 @@
|
|||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.geotools</groupId>
|
||||
<artifactId>geotools</artifactId>
|
||||
|
|
Loading…
Reference in New Issue