Skip to content

Commit

Permalink
new repo (#169)
Browse files Browse the repository at this point in the history
* new repo

* use different name for new repo, and keep old repo
  • Loading branch information
Boris-Tang authored Aug 1, 2024
1 parent b391a56 commit fcb888f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
4 changes: 4 additions & 0 deletions workflows/ci-cd-java/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
env:
MAVEN_USERNAME: ${{ secrets.MVN_MIRROR_USER }}
MAVEN_PASSWORD: ${{ secrets.MVN_MIRROR_PASSWORD }}
MAVEN_REPO_USERNAME: ${{ secrets.MVN_REPO_USER }}
MAVEN_REPO_PASSWORD: ${{ secrets.MVN_REPO_PASSWORD }}
MVN_REPOSITORY_USERNAME: ${{ secrets.MVN_REPOSITORY_USERNAME }}
MVN_REPOSITORY_PASSWORD: ${{ secrets.MVN_REPOSITORY_TOKEN }}

Expand All @@ -66,5 +68,7 @@ jobs:
env:
MAVEN_USERNAME: ${{ secrets.MVN_MIRROR_USER }}
MAVEN_PASSWORD: ${{ secrets.MVN_MIRROR_PASSWORD }}
MAVEN_REPO_USERNAME: ${{ secrets.MVN_REPO_USER }}
MAVEN_REPO_PASSWORD: ${{ secrets.MVN_REPO_PASSWORD }}
MVN_REPOSITORY_USERNAME: ${{ secrets.MVN_REPOSITORY_USERNAME }}
MVN_REPOSITORY_PASSWORD: ${{ secrets.MVN_REPOSITORY_TOKEN }}
23 changes: 23 additions & 0 deletions workflows/ci-cd-java/maven-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
<username>${env.MAVEN_USERNAME}</username>
<password>${env.MAVEN_PASSWORD}</password>
</server>
<server>
<id>artifactory.deltaprojects.net-snapshots</id>
<username>${env.MAVEN_REPO_USERNAME}</username>
<password>${env.MAVEN_REPO_PASSWORD}</password>
</server>
<server>
<id>artifactory.deltaprojects.net</id>
<username>${env.MAVEN_REPO_USERNAME}</username>
<password>${env.MAVEN_REPO_PASSWORD}</password>
</server>
<server>
<id>github</id>
<username>${env.MVN_REPOSITORY_USERNAME}</username>
Expand All @@ -30,6 +40,19 @@
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>artifactory.deltaprojects.net</id>
<name>libs-releases</name>
<url>https://artifactory.deltaprojects.net/artifactory/libs-releases-local/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>artifactory.deltaprojects.net-snapshots</id>
<name>libs-snapshots</name>
<url>https://artifactory.deltaprojects.net/artifactory/libs-snapshots-local/</url>
</repository>
<repository>
<id>bucketrepo</id>
<name>bucketrepo</name>
Expand Down

0 comments on commit fcb888f

Please sign in to comment.