Skip to content

Commit

Permalink
fix(maven-settings.xml): testing maven publishing credentials with to…
Browse files Browse the repository at this point in the history
…ken: do not upgrade
  • Loading branch information
AsifNawaz-cnic committed Jun 19, 2024
1 parent dc484cd commit e262d92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
"ghcr.io/devcontainers/features/node:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/git:1": {}
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/java:1": {
"version": "none",
"installMaven": "true"
}
},
"postCreateCommand": "zsh ./.devcontainer/post-create.sh",
"runArgs": [
Expand Down
10 changes: 5 additions & 5 deletions maven-settings.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<!-- This file provides passwords and key details to the Maven plugins that sign our artifacts
and deploy them to the OSSRH repository. The secret information is passed in with
Travis CI secure environment variables. -->
<settings>
<settings>
<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_JIRA_USERNAME}</username>
<password>${env.OSSRH_JIRA_PASSWORD}</password>
<id>central</id>
<username>u1DFIM8q</username>
<password>6mquStSvHjk/6jI3gAWXXuSJhUiJ2uO020RYvs9h9gC0</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<id>central</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
Expand Down

0 comments on commit e262d92

Please sign in to comment.