Skip to content

Commit

Permalink
Add another repository for resolving gradle dependencies. Fix a minor…
Browse files Browse the repository at this point in the history
… warning
  • Loading branch information
jamesrwelch committed Aug 8, 2024
1 parent be401f1 commit 9208702
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ buildscript {
repositories {
mavenLocal()
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://repo.gradle.org/gradle/libs-releases-local/' }
mavenCentral()
maven { url "https://mauro-repository.com/libs-release-local" }
maven {
Expand Down Expand Up @@ -182,7 +183,7 @@ afterEvaluate {
}

// Make sure groovy tasks can compile
tasks.withType(GroovyCompile) {
tasks.withType(GroovyCompile).configureEach {
configure(groovyOptions.forkOptions) {
memoryMaximumSize = '1g'
jvmArgs = ['-Xms512m', '-Xmx1g']
Expand Down

0 comments on commit 9208702

Please sign in to comment.