Skip to content

Commit

Permalink
try matching ids
Browse files Browse the repository at this point in the history
  • Loading branch information
pcalouche committed Aug 2, 2024
1 parent ff7aa37 commit 6c8fa64
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ registries:
updates:
- package-ecosystem: "maven"
directory: "/"
registries: "*"
registries:
- central
schedule:
interval: "monthly"
target-branch: "main"
Expand Down
15 changes: 15 additions & 0 deletions .mvn/settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<servers>
<server>
<id>github-pcalouche-spring-forge</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>

</settings>
16 changes: 1 addition & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<distributionManagement>
<repository>
<id>github</id>
<id>github-pcalouche-spring-forge</id>
<name>Spring Forge</name>
<url>https://maven.pkg.github.com/pcalouche/spring-forge</url>
</repository>
Expand Down Expand Up @@ -105,20 +105,6 @@
</dependencies>
</dependencyManagement>

<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>github-pcalouche-spring-forge</id>
<url>https://maven.pkg.github.com/pcalouche/spring-forge</url>
</repository>
</repositories>

<build>
<!--
Plugin management will not apply the plugin to a child POM. Rather it serves as a place to
Expand Down

0 comments on commit 6c8fa64

Please sign in to comment.