Skip to content

Commit

Permalink
upgrade joinfaces to 5.2.0-m2
Browse files Browse the repository at this point in the history
  • Loading branch information
persapiens authored Aug 25, 2023
1 parent b3cec4d commit 53be17e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
target-branch: "5.2.x"
schedule:
interval: daily
- package-ecosystem: "maven"
directory: "/"
target-branch: "5.1.x"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ jobs:
env:
# to get access to secrets.SONAR_TOKEN, provide GITHUB_TOKEN
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.java == 17 && github.event_name == 'push' && github.ref_name == '5.0.x' && github.repository_owner == 'joinfaces' }}
if: ${{ matrix.java == 17 && github.event_name == 'push' && github.ref_name == '5.2.x' && github.repository_owner == 'joinfaces' }}
run: ./mvnw -Dsonar.login=${{ secrets.SONAR_TOKEN }} -Pcheck-sonarqube sonar:sonar

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ mvn clean install

3- Run
```Shell
java -jar target/joinfaces-example-5.1.x.jar
java -jar target/joinfaces-example-5.2.x.jar
```

4- Access starter page at **http://localhost:8080/** This page can help you to choose the JoinFaces Starter that fits your needs. You may log in with credentials
Expand All @@ -43,7 +43,7 @@ Includes joinfaces starter dependency. All other jsf dependencies are included t

```xml
<properties>
<joinfaces.version>5.1.2</joinfaces.version>
<joinfaces.version>5.2.0-m2</joinfaces.version>
</properties>

<dependencyManagement>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.3</version>
<version>3.2.0-M2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>org.joinfaces</groupId>
<artifactId>joinfaces-example</artifactId>
<version>5.1.x</version>
<version>5.2.x</version>
<packaging>jar</packaging>

<name>JoinFaces Example</name>
Expand All @@ -21,7 +21,7 @@
<properties>
<!-- compile library versions -->
<jakarta.validation-api.version>3.0.2</jakarta.validation-api.version>
<joinfaces.version>5.1.2</joinfaces.version>
<joinfaces.version>5.2.0-m2</joinfaces.version>
<maven-model.version>3.9.4</maven-model.version>

<!-- test library versions -->
Expand Down

0 comments on commit 53be17e

Please sign in to comment.