Skip to content

Commit

Permalink
try a new approach
Browse files Browse the repository at this point in the history
  • Loading branch information
pcalouche committed Aug 2, 2024
1 parent e52a6d4 commit b80bb37
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ registries:
github:
type: "maven-repository"
url: "https://maven.pkg.github.com/pcalouche/spring-forge"
username: ${{ github.actor }}
password: ${{ github.token }}
username: pcalouche
password: "${{ secrets.PCALOUCHE_TOKEN }}"
updates:
- package-ecosystem: "maven"
directory: "/"
Expand Down
12 changes: 8 additions & 4 deletions .mvn/settings.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<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">
<?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>

</settings>
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
<version>1.0.0-SNAPSHOT</version>
<description>Skeleton Spring Boot Project that uses Spring Forge</description>

<properties>
<java.version>21</java.version>
</properties>

<dependencies>
<dependency>
<groupId>dev.pcalouche.springforge.spring33x</groupId>
Expand Down Expand Up @@ -47,6 +43,10 @@
</dependencies>

<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
Expand Down

0 comments on commit b80bb37

Please sign in to comment.