aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2019-08-13 14:54:16 -0400
committerBen Burwell <ben@benburwell.com>2019-08-13 14:54:16 -0400
commit58c2d11d75a4db033cc6c601ed6bcea0433804e3 (patch)
treeadfbe08fccdf9d2bd99023980965a9926a498a8c
parent8455351e962997b84aac02c53e9f6db4f739cad9 (diff)
maven: adopt
-rw-r--r--templates/.m2/settings.xml56
1 files changed, 56 insertions, 0 deletions
diff --git a/templates/.m2/settings.xml b/templates/.m2/settings.xml
new file mode 100644
index 0000000..756e999
--- /dev/null
+++ b/templates/.m2/settings.xml
@@ -0,0 +1,56 @@
+<?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>ben</username>
+ <password>{{ pass "virtyx/maven-token" }}</password>
+ <id>central</id>
+ </server>
+ <server>
+ <username>ben</username>
+ <password>{{ pass "virtyx/maven-token" }}</password>
+ <id>snapshots</id>
+ </server>
+ </servers>
+ <profiles>
+ <profile>
+ <repositories>
+ <repository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>central</id>
+ <name>libs-release</name>
+ <url>https://maven.virtyx.com/artifactory/libs-release</url>
+ </repository>
+ <repository>
+ <snapshots />
+ <id>snapshots</id>
+ <name>libs-snapshot</name>
+ <url>https://maven.virtyx.com/artifactory/libs-snapshot</url>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>central</id>
+ <name>plugins-release</name>
+ <url>https://maven.virtyx.com/artifactory/plugins-release</url>
+ </pluginRepository>
+ <pluginRepository>
+ <snapshots />
+ <id>snapshots</id>
+ <name>plugins-snapshot</name>
+ <url>https://maven.virtyx.com/artifactory/plugins-snapshot</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <id>artifactory</id>
+ </profile>
+ </profiles>
+ <activeProfiles>
+ <activeProfile>artifactory</activeProfile>
+ </activeProfiles>
+</settings>