Closes #33 /claim #33 ## Description Jfrog Modules doesn't support conda package manager, This PR adds support of that ## Type of Change - [ ] New module - [ ] Bug fix - [x] Feature/enhancement - [ ] Documentation - [ ] Other ## Testing & Validation - [x] Tests pass (`bun test`) - [ ] Code formatted (`bun run fmt`) - [ ] Changes tested locally ## Related Issues #33 ## video https://github.com/user-attachments/assets/61c33963-e1a7-43e2-b1cc-fdb747405cf5
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
|
|
http://maven.apache.org/xsd/settings-1.0.0.xsd">
|
|
|
|
<servers>
|
|
%{ for REPO in REPOS ~}
|
|
<server>
|
|
<id>${REPO}</id>
|
|
<username>${ARTIFACTORY_USERNAME}</username>
|
|
<password>${ARTIFACTORY_ACCESS_TOKEN}</password>
|
|
</server>
|
|
%{ endfor ~}
|
|
</servers>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>artifactory</id>
|
|
<repositories>
|
|
%{ for REPO in REPOS ~}
|
|
<repository>
|
|
<id>${REPO}</id>
|
|
<url>${JFROG_URL}/artifactory/${REPO}</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
%{ endfor ~}
|
|
</repositories>
|
|
<pluginRepositories>
|
|
%{ for REPO in REPOS ~}
|
|
<pluginRepository>
|
|
<id>${REPO}</id>
|
|
<url>${JFROG_URL}/artifactory/${REPO}</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
%{ endfor ~}
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<activeProfiles>
|
|
<activeProfile>artifactory</activeProfile>
|
|
</activeProfiles>
|
|
|
|
</settings>
|