Skip to content

Commit

Permalink
- Add codenarc config
Browse files Browse the repository at this point in the history
- Remove Jenkins Pipeline file
- Update build to correctly publish to snapshot repository
  • Loading branch information
jamesrwelch committed Aug 14, 2024
1 parent a460412 commit d14d513
Show file tree
Hide file tree
Showing 3 changed files with 472 additions and 13 deletions.
23 changes: 10 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,16 @@ subprojects {
}
}
}
repositories {
maven {
name = "MauroSnapshotRepository"
url = "https://mauro-repository.com/libs-snapshot-local"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
}
}
}
}
}
}
Expand Down Expand Up @@ -340,16 +350,3 @@ FileCollection findNonParallelTestFiles(Project project) {
f.text.find(/@Tag\('non-parallel'\)/)
}
}

publishing {
repositories {
maven {
name = "MauroSnapshotRepository"
url = "https://mauro-repository.com/libs-snapshot-local"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
}
}
}
}
Loading

0 comments on commit d14d513

Please sign in to comment.