-
Notifications
You must be signed in to change notification settings - Fork 3
feat: 177 update maven groupid and repository license #186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| name: Build and Release | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - 'v*.*.*' | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Set up JDK | ||
| uses: actions/setup-java@v3 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
|
|
||
| - name: Build with Maven | ||
| run: mvn clean install | ||
|
|
||
| release: | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Create GitHub Release | ||
| uses: softprops/action-gh-release@v1 | ||
| with: | ||
| files: | | ||
| target/*.jar | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you sure we should change this by hand?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe it will work.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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> | ||
|
|
@@ -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>developers@mobilitydata.org</email> | ||
| <organization>MobilityData</organization> | ||
| <organizationUrl>https://mobilitydata.org/</organizationUrl> | ||
| </developer> | ||
| <developer> | ||
| <name>Tom Erik Støwer</name> | ||
| <email>tom.erik.stower@entur.org</email> | ||
|
|
@@ -28,9 +34,9 @@ | |
| </developer> | ||
| </developers> | ||
| <scm> | ||
| <connection>scm:git:ssh://git@github.com/entur/gbfs-validator-java.git</connection> | ||
| <developerConnection>scm:git:ssh://git@github.com/entur/gbfs-validator-java.git</developerConnection> | ||
| <url>https://github.com/entur/gbfs-validator-java/tree/master</url> | ||
| <connection>scm:git:ssh://git@github.com/MobilityData/gbfs-validator-java.git</connection> | ||
| <developerConnection>scm:git:ssh://git@github.com/MobilityData/gbfs-validator-java.git</developerConnection> | ||
| <url>https://github.com/MobilityData/gbfs-validator-java.git</url> | ||
| <tag>HEAD</tag> | ||
| </scm> | ||
| <properties> | ||
|
|
@@ -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> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's address this in a different issue/PR. There is some clean-up to be done. This repository is set for release with the previous org details, more info
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deleted.