Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
391 changes: 201 additions & 190 deletions LICENSE.txt

Large diffs are not rendered by default.

26 changes: 16 additions & 10 deletions gbfs-validator-java-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-parent</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
Copy link

@jcpitre jcpitre Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure we should change this by hand?
Actually I looked into it and the version is automatically set by entur/gha-maven-central/.github/workflows/maven-publish.yml
I suggest we don't change it by hand.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought I needed to do a release so I changed it. I'll leave it there and let the github actions change it next time.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it will work.
I saw that entur/gha-maven-central does something special if the current version in pom.xml ends with SNAPSHOT (see this), but I am not sure of the exact effect.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is why my suggestion is to address the release in its own issue; we also need to "clean up" the maven build, dependencies, release, and other entur's related plugins.

</parent>

<artifactId>gbfs-validator-java-api</artifactId>
Expand All @@ -14,12 +14,18 @@
<url>https://github.com/entur/gbfs-validator-java</url>
<licenses>
<license>
<name>EUPL-1.2 with modifications</name>
<name>Apache License, Version 2.0</name>
<url>https://joinup.ec.europa.eu/software/page/eupl</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>MobilityData</name>
<email>[email protected]</email>
<organization>MobilityData</organization>
<organizationUrl>https://mobilitydata.org/</organizationUrl>
</developer>
<developer>
<name>Tom Erik Støwer</name>
<email>[email protected]</email>
Expand All @@ -28,9 +34,9 @@
</developer>
</developers>
<scm>
<connection>scm:git:ssh://[email protected]/entur/gbfs-validator-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/entur/gbfs-validator-java.git</developerConnection>
<url>https://github.com/entur/gbfs-validator-java/tree/master</url>
<connection>scm:git:ssh://[email protected]/MobilityData/gbfs-validator-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/MobilityData/gbfs-validator-java.git</developerConnection>
<url>https://github.com/MobilityData/gbfs-validator-java.git</url>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down Expand Up @@ -126,15 +132,15 @@
</dependency>

<dependency>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-loader</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
</dependency>

<dependency>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
10 changes: 5 additions & 5 deletions gbfs-validator-java-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-parent</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
</parent>

<artifactId>gbfs-validator-java-cli</artifactId>
<packaging>jar</packaging>
<name>GBFS Validator CLI</name>
<description>Command-line interface for GBFS validation</description>
<url>https://github.com/entur/gbfs-validator-java</url>
<url>https://github.com/MobilityData/gbfs-validator-java</url>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand All @@ -30,12 +30,12 @@
<dependencies>
<!-- Internal dependencies -->
<dependency>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-loader</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions gbfs-validator-java-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-parent</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
</parent>

<artifactId>gbfs-validator-java-loader</artifactId>
<name>gbfs-validator-java-loader</name>
<description>Validate GBFS feeds</description>
<url>https://github.com/entur/gbfs-validator-java</url>
<url>https://github.com/MobilityData/gbfs-validator-java</url>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
22 changes: 14 additions & 8 deletions gbfs-validator-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-parent</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
</parent>

<artifactId>gbfs-validator-java</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>
<packaging>jar</packaging>

<name>gbfs-validator-java</name>
Expand All @@ -22,13 +22,19 @@

<licenses>
<license>
<name>EUPL-1.2 with modifications</name>
<url>https://joinup.ec.europa.eu/software/page/eupl</url>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>MobilityData</name>
<email>[email protected]</email>
<organization>MobilityData</organization>
<organizationUrl>https://mobilitydata.org/</organizationUrl>
</developer>
<developer>
<name>Tom Erik Støwer</name>
<email>[email protected]</email>
Expand All @@ -38,9 +44,9 @@
</developers>

<scm>
<connection>scm:git:ssh://[email protected]/entur/gbfs-validator-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/entur/gbfs-validator-java.git</developerConnection>
<url>https://github.com/entur/gbfs-validator-java/tree/master</url>
<connection>scm:git:ssh://[email protected]/MobilityData/gbfs-validator-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/MobilityData/gbfs-validator-java.git</developerConnection>
<url>https://github.com/MobilityData/gbfs-validator-java.git</url>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down
20 changes: 13 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<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">
<modelVersion>4.0.0</modelVersion>

<groupId>org.entur.gbfs</groupId>
<groupId>org.mobilitydata</groupId>
<artifactId>gbfs-validator-java-parent</artifactId>
<version>2.0.67-SNAPSHOT</version>
<version>2.0.67</version>

<packaging>pom</packaging>

Expand All @@ -17,8 +17,8 @@
</organization>
<licenses>
<license>
<name>EUPL-1.2 with modifications</name>
<url>https://joinup.ec.europa.eu/software/page/eupl</url>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
Expand All @@ -30,6 +30,12 @@
</modules>

<developers>
<developer>
<name>MobilityData</name>
<email>[email protected]</email>
<organization>MobilityData</organization>
<organizationUrl>https://mobilitydata.org/</organizationUrl>
</developer>
<developer>
<name>Tom Erik Støwer</name>
<email>[email protected]</email>
Expand All @@ -39,9 +45,9 @@
</developers>

<scm>
<connection>scm:git:ssh://[email protected]/entur/gbfs-validator-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/entur/gbfs-validator-java.git</developerConnection>
<url>https://github.com/entur/gbfs-validator-java/tree/master</url>
<connection>scm:git:ssh://[email protected]/MobilityData/gbfs-validator-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/MobilityData/gbfs-validator-java.git</developerConnection>
<url>https://github.com/MobilityData/gbfs-validator-java.git</url>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down