proj4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.locationtech.proj4j</groupId> <artifactId>proj4j</artifactId> <version>1.4.1</version> </dependency>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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> <parent> <groupId>org.locationtech.proj4j</groupId> <artifactId>proj4j-modules</artifactId> <version>1.4.1</version> </parent> <groupId>org.locationtech.proj4j</groupId> <artifactId>proj4j</artifactId> <version>1.4.1</version> <packaging>bundle</packaging> <name>Proj4J</name> <description>Java port of the Proj.4 library for coordinate reprojection</description> <properties> <bundle-symbolicname>org.locationtech.proj4j</bundle-symbolicname> <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier> </properties> <dependencies> <dependency> <groupId>org.locationtech.proj4j</groupId> <artifactId>proj4j-epsg</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.8</version> <extensions>true</extensions> <configuration> <instructions> <_nouses>true</_nouses> <_snapshot>${osgi-version-qualifier}</_snapshot> <Bundle-SymbolicName>${bundle-symbolicname}</Bundle-SymbolicName> <Import-Package /> </instructions> <niceManifest>true</niceManifest> </configuration> </plugin> </plugins> </build> </project>