Skip to content

Commit

Permalink
Merge pull request #57 from OpenLiberty/staging
Browse files Browse the repository at this point in the history
Merge staging to prod: Update to MP6.1
  • Loading branch information
gkwan-ibm authored Feb 29, 2024
2 parents 50cadd6 + 0fc63df commit 34aaec7
Show file tree
Hide file tree
Showing 10 changed files with 65 additions and 40 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: maven
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 50
18 changes: 18 additions & 0 deletions .github/workflows/add-pr-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Add PRs to Dependabot PRs dashboard

on:
pull_request:
types:
- opened
- labeled

jobs:
add-to-project:
name: Add PR to dashboard
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/OpenLiberty/projects/26
github-token: ${{ secrets.ADMIN_BACKLOG }}
labeled: dependencies
6 changes: 3 additions & 3 deletions finish/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Liberty configuration -->
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
<liberty.var.http.port>9080</liberty.var.http.port>
<liberty.var.https.port>9443</liberty.var.https.port>
</properties>

<dependencies>
Expand Down Expand Up @@ -43,7 +43,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.2</version>
<version>3.10</version>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 4 additions & 4 deletions finish/client/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<!-- end::features[] -->
</featureManager>

<variable name="default.http.port" defaultValue="9080"/>
<variable name="default.https.port" defaultValue="9443"/>
<variable name="http.port" defaultValue="9080"/>
<variable name="https.port" defaultValue="9443"/>

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

Expand Down
18 changes: 9 additions & 9 deletions finish/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Liberty configuration -->
<liberty.var.default.http.port>9081</liberty.var.default.http.port>
<liberty.var.default.https.port>9445</liberty.var.default.https.port>
<liberty.var.http.port>9081</liberty.var.http.port>
<liberty.var.https.port>9445</liberty.var.https.port>
</properties>

<dependencies>
Expand All @@ -32,13 +32,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.2</version>
<version>5.10.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-jakarta-client</artifactId>
<version>11.0.14</version>
<version>11.0.19</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -50,13 +50,13 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>6.2.3.Final</version>
<version>6.2.7.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>2.0.7</version>
<version>2.0.11</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -77,21 +77,21 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.2</version>
<version>3.10</version>
</plugin>

<!-- Plugin to run unit tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.5</version>
</plugin>

<!-- Plugin to run integration tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 4 additions & 4 deletions finish/system/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<!-- end::jsonB[] -->
</featureManager>

<variable name="default.http.port" defaultValue="9081"/>
<variable name="default.https.port" defaultValue="9444"/>
<variable name="http.port" defaultValue="9081"/>
<variable name="https.port" defaultValue="9444"/>

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

<webApplication location="guide-jakarta-websocket-system.war" contextRoot="/"/>

Expand Down
6 changes: 3 additions & 3 deletions start/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Liberty configuration -->
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
<liberty.var.http.port>9080</liberty.var.http.port>
<liberty.var.https.port>9443</liberty.var.https.port>
</properties>

<dependencies>
Expand Down Expand Up @@ -43,7 +43,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.2</version>
<version>3.10</version>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 4 additions & 4 deletions start/client/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<!-- end::features[] -->
</featureManager>

<variable name="default.http.port" defaultValue="9080"/>
<variable name="default.https.port" defaultValue="9443"/>
<variable name="http.port" defaultValue="9080"/>
<variable name="https.port" defaultValue="9443"/>

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

Expand Down
18 changes: 9 additions & 9 deletions start/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Liberty configuration -->
<liberty.var.default.http.port>9081</liberty.var.default.http.port>
<liberty.var.default.https.port>9445</liberty.var.default.https.port>
<liberty.var.http.port>9081</liberty.var.http.port>
<liberty.var.https.port>9445</liberty.var.https.port>
</properties>

<dependencies>
Expand All @@ -32,13 +32,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.2</version>
<version>5.10.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-jakarta-client</artifactId>
<version>11.0.14</version>
<version>11.0.19</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -50,13 +50,13 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>6.2.3.Final</version>
<version>6.2.7.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>2.0.7</version>
<version>2.0.11</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -77,21 +77,21 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.8.2</version>
<version>3.10</version>
</plugin>

<!-- Plugin to run unit tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.5</version>
</plugin>

<!-- Plugin to run integration tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 4 additions & 4 deletions start/system/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<!-- end::jsonB[] -->
</featureManager>

<variable name="default.http.port" defaultValue="9081"/>
<variable name="default.https.port" defaultValue="9444"/>
<variable name="http.port" defaultValue="9081"/>
<variable name="https.port" defaultValue="9444"/>

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

<webApplication location="guide-jakarta-websocket-system.war" contextRoot="/"/>

Expand Down

0 comments on commit 34aaec7

Please sign in to comment.