Skip to content

Commit 7ae8664

Browse files
authored
Update to MP6.1 (#213)
* update versions * Update pom.xml * Update pom.xml * update versions
1 parent fdffb51 commit 7ae8664

File tree

6 files changed

+37
-12
lines changed

6 files changed

+37
-12
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: maven
4+
directory: "/"
5+
schedule:
6+
interval: monthly
7+
open-pull-requests-limit: 50
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Add PRs to Dependabot PRs dashboard
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- labeled
8+
9+
jobs:
10+
add-to-project:
11+
name: Add PR to dashboard
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/[email protected]
15+
with:
16+
project-url: https://github.com/orgs/OpenLiberty/projects/26
17+
github-token: ${{ secrets.ADMIN_BACKLOG }}
18+
labeled: dependencies

finish/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- tag::microprofile[] -->
2929
<artifactId>microprofile</artifactId>
3030
<!-- end::microprofile[] -->
31-
<version>6.0</version>
31+
<version>6.1</version>
3232
<type>pom</type>
3333
<scope>provided</scope>
3434
</dependency>
@@ -46,13 +46,13 @@
4646
<plugin>
4747
<groupId>io.openliberty.tools</groupId>
4848
<artifactId>liberty-maven-plugin</artifactId>
49-
<version>3.8.2</version>
49+
<version>3.10</version>
5050
</plugin>
5151
<!-- tag::frontend-plugin[] -->
5252
<plugin>
5353
<groupId>com.github.eirslett</groupId>
5454
<artifactId>frontend-maven-plugin</artifactId>
55-
<version>1.13.3</version>
55+
<version>1.15.0</version>
5656
<configuration>
5757
<!-- tag::working-dir[] -->
5858
<workingDirectory>src/main/frontend</workingDirectory>

finish/src/main/liberty/config/server.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<feature>jsonp-2.1</feature>
77
</featureManager>
88

9-
<variable name="default.http.port" defaultValue="9080"/>
10-
<variable name="default.https.port" defaultValue="9443"/>
9+
<variable name="http.port" defaultValue="9080"/>
10+
<variable name="https.port" defaultValue="9443"/>
1111

12-
<httpEndpoint host="*" httpPort="${default.http.port}" httpsPort="${default.https.port}" id="defaultHttpEndpoint" />
12+
<httpEndpoint host="*" httpPort="${http.port}" httpsPort="${https.port}" id="defaultHttpEndpoint" />
1313

1414
<webApplication location="guide-rest-client-angular.war" contextRoot="/"/>
1515
</server>

start/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- tag::microprofile[] -->
2929
<artifactId>microprofile</artifactId>
3030
<!-- end::microprofile[] -->
31-
<version>6.0</version>
31+
<version>6.1</version>
3232
<type>pom</type>
3333
<scope>provided</scope>
3434
</dependency>
@@ -46,12 +46,12 @@
4646
<plugin>
4747
<groupId>io.openliberty.tools</groupId>
4848
<artifactId>liberty-maven-plugin</artifactId>
49-
<version>3.8.2</version>
49+
<version>3.10</version>
5050
</plugin>
5151
<plugin>
5252
<groupId>com.github.eirslett</groupId>
5353
<artifactId>frontend-maven-plugin</artifactId>
54-
<version>1.13.3</version>
54+
<version>1.15.0</version>
5555
<configuration>
5656
<workingDirectory>src/main/frontend</workingDirectory>
5757
</configuration>

start/src/main/liberty/config/server.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<feature>jsonp-2.1</feature>
77
</featureManager>
88

9-
<variable name="default.http.port" defaultValue="9080"/>
10-
<variable name="default.https.port" defaultValue="9443"/>
9+
<variable name="http.port" defaultValue="9080"/>
10+
<variable name="https.port" defaultValue="9443"/>
1111

12-
<httpEndpoint host="*" httpPort="${default.http.port}" httpsPort="${default.https.port}" id="defaultHttpEndpoint" />
12+
<httpEndpoint host="*" httpPort="${http.port}" httpsPort="${https.port}" id="defaultHttpEndpoint" />
1313

1414
<webApplication location="guide-rest-client-angular.war" contextRoot="/"/>
1515
</server>

0 commit comments

Comments
 (0)