Skip to content

Commit

Permalink
Do not review - Initial commit Netflix#354
Browse files Browse the repository at this point in the history
Initial commit for upgrading gradle to version 8.0.2
  • Loading branch information
kparnami1 committed Mar 8, 2023
1 parent 3c9e649 commit 5930529
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
13 changes: 5 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
gradlePluginPortal()
Expand All @@ -28,12 +27,14 @@ buildscript {
classpath 'io.mantisrx:mantis-gradle-plugin:1.2.+'
classpath "io.freefair.gradle:lombok-plugin:5.3.3.3"
classpath 'eu.appsatori:gradle-fatjar-plugin:0.3'
classpath("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0")
classpath 'com.github.johnrengelman:shadow:8.1.0'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.3.0'
classpath 'com.palantir.baseline:gradle-baseline-java:4.0.0'
}
}

plugins {
id 'java-library'
}
ext.versions = [
flink : "1.14.2",
hadoop : "2.7.7",
Expand Down Expand Up @@ -90,19 +91,15 @@ ext.libraries = [
allprojects {
apply plugin: 'nebula.netflixoss'
}

def printAllReleasedArtifacts = project.tasks.create('printAllReleasedArtifacts')
project.snapshot.configure { finalizedBy printAllReleasedArtifacts }
subprojects {
apply plugin: 'java-library'

// Apply lombok plugin and disabled the default config file generation.
apply plugin: "io.freefair.lombok"
generateLombokConfig.enabled = false
lombok {
version = "1.18.20"
}

group = 'io.mantisrx'

sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -114,7 +111,7 @@ subprojects {
}
}

configurations.compileClasspath {
configurations.all {
if (!"mantis-shaded".equals(project.name)) {
exclude group: 'com.fasterxml.jackson.core'
exclude group: 'com.fasterxml.jackson.datatype'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 5930529

Please sign in to comment.