This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(master) yarn bootstrap | |
yarn run v1.22.5 | |
$ lerna bootstrap | |
lerna notice cli v4.0.0 | |
lerna info bootstrap root only | |
warning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json. | |
[1/4] Resolving packages... | |
[2/4] Fetching packages... | |
info [email protected]: The platform "linux" is incompatible with this module. | |
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] Running org.uberfire.java.nio.fs.jgit.JGitFileSystemImplProviderAsDefaultTest | |
[main] INFO org.eclipse.jgit.internal.ketch.KetchSystem - Using 8 threads | |
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.417 s - in org.uberfire.java.nio.fs.jgit.JGitFileSystemImplProviderAsDefaultTest | |
[INFO] Running org.uberfire.java.nio.fs.jgit.JGitForkTest | |
[main] DEBUG org.uberfire.java.nio.fs.jgit.util.commands.Fork - Forking repository <source/source> to <target/target> | |
[main] DEBUG org.uberfire.java.nio.fs.jgit.util.commands.Fork - Forking repository <testforkA/source> to <testforkB/target> | |
[main] DEBUG org.uberfire.java.nio.fs.jgit.util.commands.Fork - Forking repository <testforkA/source> to <testforkB/target> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "demo", | |
"realm": "demo", | |
"notBefore": 0, | |
"revokeRefreshToken": false, | |
"refreshTokenMaxReuse": 0, | |
"accessTokenLifespan": 300, | |
"accessTokenLifespanForImplicitFlow": 900, | |
"ssoSessionIdleTimeout": 1800, | |
"ssoSessionMaxLifespan": 36000, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#1 on jenkins vm (identify container id) and save container with git and all ready to build while running job | |
sudo docker commit <container-id> test-windup-web-pr # < this is temp docker image with saved status | |
#2 save it as tar archive for moving or later discovery | |
sudo docker save -o ./windup-web-pr-builder_1596.tar.gz test-windup-web-pr | |
#3 on your local or any host with docker | |
docker load -i <saved_docker_image> | |
#4 and run it for debugging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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"> | |
<pluginGroups> | |
<pluginGroup>org.sonatype.plugins</pluginGroup> | |
</pluginGroups> | |
<profiles> | |
<profile> |