@@ -19,6 +19,14 @@ describe('maven.ts', () => {
1919 . toEqual ( `<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
2020 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2121 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
22+ <profiles>
23+ <profile>
24+ <id>aws</id>
25+ </profile>
26+ </profiles>
27+ <activeProfiles>
28+ <activeProfile>aws</activeProfile>
29+ </activeProfiles>
2230 <servers>
2331 <server>
2432 <id>codeartifact</id>
@@ -49,35 +57,43 @@ describe('maven.ts', () => {
4957 . toEqual ( `<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
5058 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5159 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
52- <repositories>
53- <repository>
54- <id>maven-release</id>
55- <snapshots>
56- <enabled>false</enabled>
57- </snapshots>
58- <url>https://interopio-389653476181.d.codeartifact.eu-central-1.amazonaws.com/maven/maven-release/</url>
59- </repository>
60- <repository>
61- <id>maven-snapshot</id>
62- <snapshots>
63- <enabled>true</enabled>
64- </snapshots>
65- <url>https://interopio-389653476181.d.codeartifact.eu-central-1.amazonaws.com/maven/maven-snapshot/</url>
66- </repository>
67- <repository>
68- <id>clojars</id>
69- <url>https://repo.clojars.org</url>
70- </repository>
71- </repositories>
72- <pluginRepositories>
73- <pluginRepository>
74- <id>maven-release</id>
75- <snapshots>
76- <enabled>false</enabled>
77- </snapshots>
78- <url>https://interopio-389653476181.d.codeartifact.eu-central-1.amazonaws.com/maven/maven-release/</url>
79- </pluginRepository>
80- </pluginRepositories>
60+ <profiles>
61+ <profile>
62+ <id>aws</id>
63+ <repositories>
64+ <repository>
65+ <id>maven-release</id>
66+ <snapshots>
67+ <enabled>false</enabled>
68+ </snapshots>
69+ <url>https://interopio-389653476181.d.codeartifact.eu-central-1.amazonaws.com/maven/maven-release/</url>
70+ </repository>
71+ <repository>
72+ <id>maven-snapshot</id>
73+ <snapshots>
74+ <enabled>true</enabled>
75+ </snapshots>
76+ <url>https://interopio-389653476181.d.codeartifact.eu-central-1.amazonaws.com/maven/maven-snapshot/</url>
77+ </repository>
78+ <repository>
79+ <id>clojars</id>
80+ <url>https://repo.clojars.org</url>
81+ </repository>
82+ </repositories>
83+ <pluginRepositories>
84+ <pluginRepository>
85+ <id>maven-release</id>
86+ <snapshots>
87+ <enabled>false</enabled>
88+ </snapshots>
89+ <url>https://interopio-389653476181.d.codeartifact.eu-central-1.amazonaws.com/maven/maven-release/</url>
90+ </pluginRepository>
91+ </pluginRepositories>
92+ </profile>
93+ </profiles>
94+ <activeProfiles>
95+ <activeProfile>aws</activeProfile>
96+ </activeProfiles>
8197</settings>` )
8298 } )
8399} )
0 commit comments