Skip to content

Commit c3e3534

Browse files
committed
Create settings.xml
1 parent 02b763d commit c3e3534

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

settings.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
5+
<activeProfiles>
6+
<activeProfile>github</activeProfile>
7+
</activeProfiles>
8+
9+
<profiles>
10+
<profile>
11+
<id>github</id>
12+
<repositories>
13+
<repository>
14+
<id>central</id>
15+
<url>https://repo1.maven.org/maven2</url>
16+
<releases>
17+
<enabled>true</enabled>
18+
</releases>
19+
<snapshots>
20+
<enabled>true</enabled>
21+
</snapshots>
22+
</repository>
23+
<repository>
24+
<id>github</id>
25+
<name>GitHub OWNER Apache Maven Packages</name>
26+
<url>https://maven.pkg.github.com/Laffini/Java-Matching-Engine-Core</url>
27+
</repository>
28+
</repositories>
29+
</profile>
30+
</profiles>
31+
32+
<servers>
33+
<server>
34+
<id>github</id>
35+
<username>${env.GITHUB_USERNAME}</username>
36+
<password>${env.GITHUB_TOKEN}</password>
37+
</server>
38+
</servers>
39+
</settings>

0 commit comments

Comments
 (0)