Skip to content

Commit

Permalink
Use new repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjort committed Jan 25, 2024
1 parent 6dad5cc commit bb4e1e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
distribution: 'temurin'
java-version: '8'
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
server-username: MAVEN_USERNAME # env variable for username in deploy
server-password: MAVEN_PASSWORD # env variable for token in deploy
server-username: ${{ secrets.SONATYPE_USR }} # env variable for username in deploy
server-password: ${{ secrets.SONATYPE_PWD }} # env variable for token in deploy
gpg-private-key: ${{ secrets.SONATYPE_PKEY }} # Value of the GPG private key to import
- name: Publish package to central maven repository
run: cd concordium-android-sdk && mvn --batch-mode deploy
Expand Down
7 changes: 1 addition & 6 deletions concordium-android-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@
</properties>

<dependencies>
<dependency>
<groupId>com.concordium.sdk</groupId>
<artifactId>concordium-sdk</artifactId>
<version>6.0.1</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
Expand Down Expand Up @@ -207,7 +202,7 @@
<repository>
<id>ossrh</id>
<name>Central Repository OSSRH</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>
</project>

0 comments on commit bb4e1e9

Please sign in to comment.