Skip to content
This repository has been archived by the owner on Jun 19, 2022. It is now read-only.

Commit

Permalink
settings.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aayush_Malhotra committed Jan 20, 2021
1 parent b24c0b1 commit 1c74aac
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<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>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>github</id>
<name>Setu Java UPI Deep Links</name>
<url>https://maven.pkg.github.com/SetuHQ/java-upi-deep-links</url>
</repository>
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>github</id>
<username>devralatsetu</username>
<password>${{secrets.token}}</password>
</server>
</servers>
</settings>

0 comments on commit 1c74aac

Please sign in to comment.