Hi,
I have a runnable jar in my repository, and want to execute through pipeline configuration, no idea how to do this. Can any one help me.
Community moderators have prevented the ability to post new answers.
Hi, i tried but not find access, error myjar.jar file not found, as per my structure my jar file is in root , can you tell me how can i find my jar path dynamically.
Too run jar you need this steps
https://askubuntu.com/a/291514
Seems you need to run it on bash file with java command
script:
- bash myRunJar.sh
myRunJar.sh
#!/bin/bashsudo apt-get install binfmt-support
chmod a+rx myjar.jar
result=$(./myjar.jar)
echo "$result"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, i tried but not find access, error myjar.jar file not found, as per my structure my jar file is in root , can you tell me how can i find my jar path dynamically.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To get path where the bash is currently:
- echo $(pwd)
to see all structure of files in the folder:
script:
-sudoapt-get update -y
-sudoapt-get install -y tree
- tree
To move your file from /root folder to current folder:
script:
- mv -v $HOME/myjar.txt $(pwd)
To see result run:
script:
- tree
or
script:
- echo $(ls)
_________________________________________________________________________________________
In result:
script:
- echo $(pwd)
-sudoapt-get update -y
-sudoapt-get install -y tree
- mv -v $HOME/myjar.txt $(pwd)
- tree
- echo $(ls)
-sudo apt-get install binfmt-support
- chmod a+rx myjar.jar
- result=$(./myjar.jar)
- echo "$result"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.