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.
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:
-sudo
apt-get update -y
-sudo
apt-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)
-sudo
apt-get update -y
-sudo
apt-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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.