Skip to content

Commit 0363131

Browse files
committed
maven settings
Maven settings.xml needed for publishing packages.
1 parent 19d298f commit 0363131

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.m2/settings.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
4+
http://maven.apache.org/xsd/settings-1.0.0.xsd">
5+
6+
<activeProfiles>
7+
<activeProfile>github</activeProfile>
8+
</activeProfiles>
9+
10+
<profiles>
11+
<profile>
12+
<id>github</id>
13+
<repositories>
14+
<repository>
15+
<id>github</id>
16+
<name>GitHub cicirello Apache Maven Packages</name>
17+
<url>https://maven.pkg.github.com/cicirello/JavaPermutationTools</url>
18+
</repository>
19+
</repositories>
20+
</profile>
21+
</profiles>
22+
23+
<servers>
24+
<server>
25+
<id>github</id>
26+
<username>${env.GITHUB_ACTOR}</username>
27+
<password>${env.GITHUB_TOKEN}</password>
28+
</server>
29+
</servers>
30+
</settings>

0 commit comments

Comments
 (0)