jackson-datatype-jts
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.n52.jackson</groupId> <artifactId>jackson-datatype-jts</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2019-2025 52°North Spatial Information Research GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.n52</groupId> <artifactId>parent</artifactId> <version>27</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.n52.jackson</groupId> <artifactId>jackson-datatype-jts</artifactId> <inceptionYear>2019</inceptionYear> <version>2.0.0</version> <name>Jackson JTS datatype</name> <description>Jackson JTS datatype</description> <developers> <developer> <id>autermann</id> <name>Christian Autermann</name> <email>c.autermann@52north.org</email> <organization>${project.organization.name}</organization> <organizationUrl>${project.organization.url}</organizationUrl> <timezone>GMT+1</timezone> </developer> </developers> <scm> <url>https://github.com/52North/jackson-datatype-jts</url> <connection>scm:git:https://github.com/52North/jackson-datatype-jts.git</connection> <developerConnection>scm:git:https://github.com/52North/jackson-datatype-jts.git</developerConnection> <tag>v2.0.0</tag> </scm> <issueManagement> <system>GitHub issues</system> <url>https://github.com/52North/jackson-datatype-jts/issues?state=open</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <properties> <jackson-version>2.18.3</jackson-version> </properties> <dependencies> <dependency> <groupId>org.locationtech.jts</groupId> <artifactId>jts-core</artifactId> <version>1.20.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-version}</version> </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.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.12.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.3</version> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>filtering-java-templates</id> <goals> <goal>filter-sources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>clean install</preparationGoals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.12</version> <executions> <execution> <id>timestamp-property</id> <goals> <goal>timestamp-property</goal> </goals> <phase>validate</phase> <configuration> <name>current.year</name> <pattern>yyyy</pattern> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <inherited>false</inherited> <configuration> <aggregate>true</aggregate> <licenseSets> <licenseSet> <header>etc/license-header.txt</header> <includes> <include>**/*.java</include> <include>**/*.xml</include> </includes> </licenseSet> </licenseSets> <strictCheck>true</strictCheck> <properties> <year>${project.inceptionYear}-${current.year}</year> </properties> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> </configuration> <executions> <execution> <id>format-license-headers</id> <phase>process-resources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jasig.maven</groupId> <artifactId>maven-notice-plugin</artifactId> <version>1.1.0</version> <inherited>false</inherited> <configuration> <noticeTemplate>etc/notice-template.txt</noticeTemplate> <licenseMapping> <param>http://52north.github.io/cdn/licenses/license-mappings.xml</param> </licenseMapping> </configuration> <executions> <execution> <id>generate-notice</id> <phase>initialize</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.sun.istack</groupId> <artifactId>istack-commons-runtime</artifactId> <version>4.1.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.4.0-b180830.0359</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.4.0-b180830.0438</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>