Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up JDK 11
uses: actions/setup-java@v1.4.3
with:
java-version: 11.0.2
java-version: 11.0.13
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Grant execute permission for Github Actions Workflows
Expand Down
35 changes: 23 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
plugins {
id 'java'
id 'maven'
id 'maven-publish'
id 'idea'
id 'signing'
id 'checkstyle'
id 'jacoco'
id "com.diffplug.gradle.spotless" version "3.27.0"
id 'org.sonarqube' version '2.8'
// id "io.codearte.nexus-staging" version "0.12.0"
id 'java'
id 'maven'
id 'maven-publish'
id 'idea'
id 'signing'
id 'checkstyle'
id 'jacoco'
id "com.diffplug.gradle.spotless" version "3.27.0"
id 'org.sonarqube' version '2.8'
// id "io.codearte.nexus-staging" version "0.12.0"
}

apply from: 'dependencies.gradle'
Expand All @@ -23,9 +23,20 @@ targetCompatibility=11

repositories
{
maven {
url "https://repo.maven.apache.org/maven2/"
artifactUrls "https://repo.maven.apache.org/maven2/"
// javax.media:jai_core:1.1.3 has the pom in central, but the jar in osgeo
artifactUrls "https://repo.osgeo.org/repository/release/"
}
// For geotools
maven { url "http://repo.osgeo.org/repository/release/" }
mavenCentral()
maven {
url "https://repo.osgeo.org/repository/release/"
content {
// osgeo removed the jar and added a -norce version
excludeVersion("log4j", "log4j", "1.2.17")
}
}
// For Spark CDH
maven { url "https://repository.cloudera.com/content/repositories/releases/" }
// For jetty (through spark)
Expand Down