Skip to content

Commit

Permalink
new setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro100 committed Apr 25, 2024
1 parent 79bb392 commit cc74f04
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_deploy_java_language_bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,6 @@ jobs:
- name: Deploy with Maven
run: mvn -B clean deploy -pl gbfs-java-model -Pci-cd
env:
MAVEN_GPG_PASSPHRASE: ${{ env.MAVEN_GPG_PASSPHRASE }}

2 changes: 1 addition & 1 deletion models/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ classes are prefixed with "GBFS".
Packages include GBFS versions to accommodate for future releases which may include older versions,
since some consumers may need to handle multiple non-compatible versions in the same application
(i.e. you should be able to parse v2.1 feeds with the v2.2 package, but v3.0 package would not
be able to parse v2.2 feeds)
be able to parse v2.2 feeds).

## Add the Dependency

Expand Down
9 changes: 6 additions & 3 deletions models/java/gbfs-java-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -404,18 +404,21 @@
<activeByDefault>false</activeByDefault>
</activation>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>Sonatype release</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit cc74f04

Please sign in to comment.