Skip to content

Commit

Permalink
ALFREDAPI-518 remove artifactory and use alfresco nexus
Browse files Browse the repository at this point in the history
  • Loading branch information
hechmi-dammak-xenit committed Apr 28, 2023
1 parent fb7ac4b commit ecedb8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
push:
workflow_dispatch:
env:
XENIT_ARTIFACTORY_USERNAME: ${{ secrets.XENIT_ARTIFACTORY_USERNAME }}
XENIT_ARTIFACTORY_PASSWORD: ${{ secrets.XENIT_ARTIFACTORY_PASSWORD }}
ALFRESCO_NEXUS_USERNAME: ${{ secrets.ALFRESCO_NEXUS_USERNAME }}
ALFRESCO_NEXUS_PASSWORD: ${{ secrets.ALFRESCO_NEXUS_PASSWORD }}
jobs:
test:
runs-on: ubuntu-latest
Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,10 @@ subprojects {
// This private repository provides Xenit with Alfresco enterprise artefacts.
// External developers should replace it with their own library repository.
maven {
name 'Xenit artifactory libs-release'
url 'https://artifactory.xenit.eu/artifactory/libs-release'
url 'https://artifacts.alfresco.com/nexus/content/groups/private'
credentials {
username System.env.XENIT_ARTIFACTORY_USERNAME ?: property("eu.xenit.artifactory.username")
password System.env.XENIT_ARTIFACTORY_PASSWORD ?: property("eu.xenit.artifactory.password")
username System.env.ALFRESCO_NEXUS_USERNAME ?: property("org.alfresco.maven.nexus.username")
password System.env.ALFRESCO_NEXUS_PASSWORD ?: property("org.alfresco.maven.nexus.password")
}
}
}
Expand Down

0 comments on commit ecedb8a

Please sign in to comment.