Skip to content

Commit

Permalink
Merge pull request #16 from shakal76/shakal76-patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
lemerch authored Aug 28, 2023
2 parents 743478a + 6a601d9 commit 35de751
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,48 @@ Why do I need this library? The original purpose of this bible library was to fi
Individual application examples can be viewed in the [tests](/src/test/java/com/github/shakal76/fillen/examples/Example.java)

## Build

Create ~./m2/settings.xml or C:\Users\%UserName%\.m2\settings.xml - and write:

```xml
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

<activeProfiles>
<activeProfile>github</activeProfile>
</activeProfiles>

<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/shakal76/fillen</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>

<servers>
<server>
<id>github</id>
<username>USERNAME</username>
<password>CLASSICAL-TOKEN-WITH-WRITE/READ-PACKAGES</password>
</server>
</servers>
</settings>
```

```xml
<dependency>
<groupId>com.github.shakal76.fillen</groupId>
Expand Down

0 comments on commit 35de751

Please sign in to comment.