Skip to content

Commit

Permalink
Use original sample Maven project (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
alextu authored Mar 6, 2024
1 parent 50d367e commit db73931
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ node {
stage('Build') {
node('foo') {
withMaven(maven: '${setupMavenInstallation()}') {
git branch: 'custom-extension', url: 'https://github.com/alextu/simple-maven-project'
git branch: 'custom-extension', url: 'https://github.com/c00ler/simple-maven-project'
if (isUnix()) {
sh "env"
sh "mvn package -B -X"
Expand Down Expand Up @@ -857,8 +857,8 @@ node {
project.buildersList.add(new Maven('package -B -X', mavenInstallationRule.mavenVersion))
project.setScm(
new GitSCM(
[new UserRemoteConfig("https://github.com/alextu/simple-maven-project", null, null, null)],
[new BranchSpec("custom-extension")], new CGit("https://github.com/alextu/simple-maven-project"),
[new UserRemoteConfig("https://github.com/c00ler/simple-maven-project", null, null, null)],
[new BranchSpec("custom-extension")], new CGit("https://github.com/c00ler/simple-maven-project"),
"git",
[]
)
Expand Down

0 comments on commit db73931

Please sign in to comment.