Skip to content

Commit 73424a5

Browse files
Merge pull request #5 from gabriel-logan/main
chore: Update Maven publish workflow to use global settings file
2 parents 75c2682 + 475343e commit 73424a5

File tree

6 files changed

+31
-4
lines changed

6 files changed

+31
-4
lines changed

.idea/sonarlint/issuestore/1/d/1d784fce58c3719506730fb9749600554125b511

Whitespace-only changes.

.idea/sonarlint/issuestore/index.pb

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/sonarlint/securityhotspotstore/1/d/1d784fce58c3719506730fb9749600554125b511

Whitespace-only changes.

.idea/sonarlint/securityhotspotstore/index.pb

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github</groupId>
88
<artifactId>multiform-validator</artifactId>
9-
<version>0.0.1</version>
9+
<version>0.0.1-TEST</version>
1010

1111
<name>Multiform Validator</name>
1212
<description>
@@ -74,7 +74,7 @@
7474
<distributionManagement>
7575
<repository>
7676
<id>github</id>
77-
<name>GitHub Packages</name>
77+
<name>GitHub multiform-validator Apache Maven Packages</name>
7878
<url>https://maven.pkg.github.com/multiform-validator/java</url>
7979
</repository>
8080
</distributionManagement>

settings.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
44
https://maven.apache.org/xsd/settings-1.0.0.xsd">
55

6+
<activeProfiles>
7+
<activeProfile>github</activeProfile>
8+
</activeProfiles>
9+
10+
<profiles>
11+
<profile>
12+
<id>github</id>
13+
<repositories>
14+
<repository>
15+
<id>central</id>
16+
<url>https://repo1.maven.org/maven2</url>
17+
</repository>
18+
<repository>
19+
<id>github</id>
20+
<url>https://maven.pkg.github.com/multiform-validator/java</url>
21+
<snapshots>
22+
<enabled>true</enabled>
23+
</snapshots>
24+
</repository>
25+
</repositories>
26+
</profile>
27+
</profiles>
28+
629
<servers>
730
<server>
831
<id>github</id>

0 commit comments

Comments
 (0)