wkb-wkt-converter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.matthieun</groupId> <artifactId>wkb-wkt-converter</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.matthieun</groupId> <artifactId>wkb-wkt-converter</artifactId> <version>1.0.1</version> <name>"WKT WKB Converter"</name> <description>"Library that uses JTS to convert WKB from/to WKT geometries"</description> <url>https://github.com/matthieun/wkb-wkt-converter</url> <licenses> <license> <name>"BSD 3 Clause"</name> <url>https://github.com/matthieun/wkb-wkt-converter/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <id>matthieun</id> <name>matthieun</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/matthieun/wkb-wkt-converter.git</connection> <developerConnection>scm:git:https://github.com/matthieun/wkb-wkt-converter.git</developerConnection> <url>https://github.com/matthieun/wkb-wkt-converter</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.vividsolutions</groupId> <artifactId>jts</artifactId> <version>1.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>compile</scope> </dependency> </dependencies> </project>