From 94e36335889945e256e596b36181e6bb4025b76a Mon Sep 17 00:00:00 2001 From: Niklas Herder <herder@dsv.su.se> Date: Wed, 25 Jan 2012 14:19:34 +0100 Subject: [PATCH] Added Maven settings.xml for the DSV Maven repo. --- settings.xml | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 settings.xml diff --git a/settings.xml b/settings.xml new file mode 100644 index 0000000000..37b336b8e6 --- /dev/null +++ b/settings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <mirrors> + <mirror> + <mirrorOf>*</mirrorOf> + <name>remote-repos</name> + <url>http://maven.dsv.su.se:8080/artifactory/remote-repos</url> + <id>remote-repos</id> + </mirror> + </mirrors> + <profiles> + <profile> + <repositories> + <repository> + <snapshots> + <enabled>false</enabled> + </snapshots> + <id>central</id> + <name>remote-repos</name> + <url>http://maven.dsv.su.se:8080/artifactory/libs-release</url> + </repository> + <repository> + <snapshots /> + <id>snapshots</id> + <name>libs-snapshot</name> + <url>http://maven.dsv.su.se:8080/artifactory/libs-snapshot</url> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <snapshots> + <enabled>false</enabled> + </snapshots> + <id>central</id> + <name>plugins-release</name> + <url>http://maven.dsv.su.se:8080/artifactory/plugins-release</url> + </pluginRepository> + <pluginRepository> + <snapshots /> + <id>snapshots</id> + <name>plugins-snapshot</name> + <url>http://maven.dsv.su.se:8080/artifactory/plugins-snapshot</url> + </pluginRepository> + </pluginRepositories> + <id>artifactory</id> + </profile> + </profiles> + <activeProfiles> + <activeProfile>artifactory</activeProfile> + </activeProfiles> +</settings> +