Skip to content

Commit d1630cd

Browse files
committed
update dependencies and Maven version.
1 parent 8d8d297 commit d1630cd

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.classpath

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
2222
<attributes>
2323
<attribute name="maven.pomderived" value="true"/>
24+
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
2425
</attributes>
2526
</classpathentry>
2627
<classpathentry kind="src" output="target/classes" path="src/main/java">

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ There is a Maven artifact in the official Maven repository, so just add this to
5757
<dependency>
5858
<groupId>io.github.sebasbaumh</groupId>
5959
<artifactId>postgis-java-ng</artifactId>
60-
<version>24.1.1</version>
60+
<version>25.1.0</version>
6161
</dependency>
6262
```
6363

64-
The version reflects the year of the release, e.g. `24.1.1` is a version released in 2024.
64+
The version reflects the year of the release, e.g. `25.1.0` is a version released in 2024.
6565

6666
The API differs a bit from [postgis-java](https://github.com/postgis/postgis-java) with the main point being a different namespace (`io.github.sebasbaumh.postgis`) as publishing a project to Maven Central requires to own that namespace.
6767
In addition the class structure is a bit different (see below) to support arc geometries and reduce boilerplate code, but you should be able to adapt to it easily.

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>io.github.sebasbaumh</groupId>
55
<artifactId>postgis-java-ng</artifactId>
66
<!-- version for release -->
7-
<version>24.1.2-SNAPSHOT</version>
7+
<version>25.1.0-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>PostGIS Java bindings</name>
@@ -30,7 +30,7 @@
3030
<connection>scm:git:git://github.com/sebasbaumh/postgis-java-ng.git</connection>
3131
<developerConnection>scm:git:ssh://github.com:sebasbaumh/postgis-java-ng.git</developerConnection>
3232
<url>https://github.com/sebasbaumh/postgis-java-ng/tree/master</url>
33-
<tag>v24.1.0</tag>
33+
<tag>v25.1.0</tag>
3434
</scm>
3535
<!-- Sonatype repository -->
3636
<distributionManagement>
@@ -163,7 +163,7 @@
163163
<configuration>
164164
<rules>
165165
<requireMavenVersion>
166-
<version>3.6</version>
166+
<version>3.9</version>
167167
</requireMavenVersion>
168168
</rules>
169169
</configuration>

postgis-java-ng only release (MacOS).launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<booleanAttribute key="M2_OFFLINE" value="false"/>
88
<stringAttribute key="M2_PROFILES" value=""/>
99
<listAttribute key="M2_PROPERTIES">
10-
<listEntry value="maven.home=/opt/homebrew/Cellar/maven/3.9.8/"/>
10+
<listEntry value="maven.home=/opt/homebrew/Cellar/maven/3.9.9/"/>
1111
</listAttribute>
1212
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
1313
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>

postgis-java-ng release (MacOS).launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<booleanAttribute key="M2_OFFLINE" value="false"/>
88
<stringAttribute key="M2_PROFILES" value=""/>
99
<listAttribute key="M2_PROPERTIES">
10-
<listEntry value="maven.home=/opt/homebrew/Cellar/maven/3.9.8/"/>
10+
<listEntry value="maven.home=/opt/homebrew/Cellar/maven/3.9.9/"/>
1111
</listAttribute>
1212
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
1313
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>

0 commit comments

Comments
 (0)