mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-13 15:23:40 +01:00
67 lines
2.1 KiB
XML
67 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<servers>
|
|
<server>
|
|
<username>${env.JFROG_USER}</username>
|
|
<password>${env.JFROG_PASSWORD}</password>
|
|
<id>release</id>
|
|
</server>
|
|
<server>
|
|
<username>${env.JFROG_USER}</username>
|
|
<password>${env.JFROG_PASSWORD}</password>
|
|
<id>snapshot</id>
|
|
</server>
|
|
<server>
|
|
<username>${env.JFROG_USER}</username>
|
|
<password>${env.JFROG_PASSWORD}</password>
|
|
<id>plugins-release</id>
|
|
</server>
|
|
<server>
|
|
<username>${env.JFROG_USER}</username>
|
|
<password>${env.JFROG_PASSWORD}</password>
|
|
<id>plugins-snapshot</id>
|
|
</server>
|
|
</servers>
|
|
<profiles>
|
|
<profile>
|
|
<repositories>
|
|
<repository>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<id>release</id>
|
|
<name>libs-release</name>
|
|
<url>https://dependencycheck.jfrog.io/dependencycheck/libs-release</url>
|
|
</repository>
|
|
<repository>
|
|
<snapshots />
|
|
<id>snapshot</id>
|
|
<name>libs-snapshot</name>
|
|
<url>https://dependencycheck.jfrog.io/dependencycheck/libs-snapshot</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<id>plugins-release</id>
|
|
<name>plugins-release</name>
|
|
<url>https://dependencycheck.jfrog.io/dependencycheck/plugins-release</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<snapshots />
|
|
<id>plugins-snapshot</id>
|
|
<name>plugins-snapshot</name>
|
|
<url>https://dependencycheck.jfrog.io/dependencycheck/plugins-snapshot</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<id>artifactory</id>
|
|
</profile>
|
|
</profiles>
|
|
<activeProfiles>
|
|
<activeProfile>artifactory</activeProfile>
|
|
</activeProfiles>
|
|
</settings>
|