Skip to content

Commit ef887e3

Browse files
jakub-pomykalagkwan-ibmdependabot[bot]
authored
adding -ntp to maven (#180)
* Bump decode-uri-component in /finish/src/main/frontend Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. - [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases) - [Commits](SamVerschueren/decode-uri-component@v0.2.0...v0.2.2) --- updated-dependencies: - dependency-name: decode-uri-component dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump decode-uri-component in /start/src/main/frontend Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. - [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases) - [Commits](SamVerschueren/decode-uri-component@v0.2.0...v0.2.2) --- updated-dependencies: - dependency-name: decode-uri-component dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump qs from 6.5.2 to 6.5.3 in /finish/src/main/frontend Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/ljharb/qs/releases) - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](ljharb/qs@v6.5.2...v6.5.3) --- updated-dependencies: - dependency-name: qs dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump qs from 6.5.2 to 6.5.3 in /start/src/main/frontend Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/ljharb/qs/releases) - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](ljharb/qs@v6.5.2...v6.5.3) --- updated-dependencies: - dependency-name: qs dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * adding -ntp to maven * Bump json5 from 2.2.1 to 2.2.3 in /start/src/main/frontend Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. - [Release notes](https://github.com/json5/json5/releases) - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - [Commits](json5/json5@v2.2.1...v2.2.3) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump json5 from 2.2.1 to 2.2.3 in /finish/src/main/frontend Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. - [Release notes](https://github.com/json5/json5/releases) - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - [Commits](json5/json5@v2.2.1...v2.2.3) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Gilbert Kwan <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a001232 commit ef887e3

File tree

3 files changed

+51
-51
lines changed

3 files changed

+51
-51
lines changed

finish/src/main/frontend/package-lock.json

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/testApp.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -euxo pipefail
1414
# liberty:create - Create a Liberty server.
1515
# liberty:install-feature - Install a feature packaged as a Subsystem Archive (esa) to the Liberty runtime.
1616
# liberty:deploy - Copy applications to the Liberty server's dropins or apps directory.
17-
mvn -Dhttp.keepAlive=false \
17+
mvn -ntp -Dhttp.keepAlive=false \
1818
-Dmaven.wagon.http.pool=false \
1919
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 \
2020
-q clean package liberty:create liberty:install-feature liberty:deploy
@@ -26,7 +26,7 @@ mvn -Dhttp.keepAlive=false \
2626
# failsafe:integration-test - Runs the integration tests of an application.
2727
# liberty:stop - Stop a Liberty server.
2828
# failsafe:verify - Verifies that the integration tests of an application passed.
29-
mvn liberty:start
29+
mvn -ntp liberty:start
3030

3131
status="$(curl --write-out "%{http_code}\n" --silent --output /dev/null "http://localhost:9080/artists")"
3232
if [ "$status" == "200" ]; then echo ENDPOINT OK; else
@@ -35,4 +35,4 @@ if [ "$status" == "200" ]; then echo ENDPOINT OK; else
3535
exit 1
3636
fi
3737

38-
mvn liberty:stop
38+
mvn -ntp liberty:stop

start/src/main/frontend/package-lock.json

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)