Skip to content
This repository was archived by the owner on May 23, 2022. It is now read-only.

Commit 97f2510

Browse files
authored
Update README.md
1 parent a32af63 commit 97f2510

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,32 @@ Add the below script in your pom file:
1818
<version>1.0.5</version>
1919
</dependency>
2020
```
21+
22+
And the below script in the settings.xml file:
23+
24+
```
25+
<?xml version="1.0" encoding="UTF-8"?>
26+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
27+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
28+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
29+
<activeProfiles>
30+
<activeProfile>github</activeProfile>
31+
</activeProfiles>
32+
33+
<profiles>
34+
<profile>
35+
<id>github</id>
36+
<repositories>
37+
<repository>
38+
<id>central</id>
39+
<url>https://repo1.maven.org/maven2</url>
40+
</repository>
41+
<repository>
42+
<id>github</id>
43+
<url>https://maven.pkg.github.com/manleviet/*</url>
44+
</repository>
45+
</repositories>
46+
</profile>
47+
</profiles>
48+
</settings>
49+
```

0 commit comments

Comments
 (0)