Skip to content

Commit

Permalink
java-vector-tile 1.3.23
Browse files Browse the repository at this point in the history
  • Loading branch information
halset committed May 8, 2023
1 parent 4b5fda4 commit 18b039b
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Mon May 08 12:49:09 CEST 2023
java-vector-tile-1.3.23-javadoc.jar>=
java-vector-tile-1.3.23-sources.jar>=
java-vector-tile-1.3.23-test-sources.jar>=
java-vector-tile-1.3.23.jar>=
java-vector-tile-1.3.23.pom>=
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>no.ecc.vectortile</groupId>
<artifactId>java-vector-tile</artifactId>
<packaging>jar</packaging>
<version>1.3.23</version>
<name>java-vector-tile</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<dependencies>

<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.19.0</version>
</dependency>

<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.16.3</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<debug>true</debug>
<encoding>UTF-8</encoding>
<fork>${fork.javac}</fork>
<maxmem>${javac.maxHeapSize}</maxmem>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<quiet>true</quiet>
<source>8</source>
<excludePackageNames>vector_tile</excludePackageNames>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>no.ecc.vectortile</groupId>
<artifactId>java-vector-tile</artifactId>
<versioning>
<release>1.3.22</release>
<release>1.3.23</release>
<versions>
<version>1.0.9</version>
<version>1.1.0</version>
Expand Down Expand Up @@ -44,7 +44,8 @@
<version>1.3.20</version>
<version>1.3.21</version>
<version>1.3.22</version>
<version>1.3.23</version>
</versions>
<lastUpdated>20230102084000</lastUpdated>
<lastUpdated>20230508104901</lastUpdated>
</versioning>
</metadata>

0 comments on commit 18b039b

Please sign in to comment.