Hi,
Here is my build.gradle:
repositories {
mavenLocal()
mavenCentral()
// nexus credentials (nexusUser and nexusPassword) are stored in
~/.gradle/gradle.properties
maven {
url "${nexusRepoUrl}/repository/maven-public/"
credentials {
username = nexusUser
password = nexusPassword
}
}
}
How can I
Hi,
Are there any tutorials/best practices regarding setting up automated build
and deploy for java apps? I need to set up jobs in Jenkins for multiple
projects.
Regards,
Sunil
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe f
These are the steps I followed as per the documentation:
wget -O /etc/yum.repos.d/jenkins.repo \
https://pkg.jenkins.io/redhat-stable/jenkins.repo
rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
yum upgrade
# Add required dependencies for the jenkins package
yum install java-11
Hi,
I am running into errors installing plugins on a new Jenkins
installation on Linux.
# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.9 (Maipo)
I followed the instructions here:
https://www.jenkins.io/doc/book/installing/linux/#red-hat-centos to
install Jenkins.
H