Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Gradle deps #602

Merged
merged 2 commits into from
May 3, 2021
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
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent

plugins {
id "org.springframework.boot" version "$LIB_SPRING_BOOT_VER" apply false
id "org.sonarqube" version "3.2.0"
id "org.sonarqube" version "$PLUGIN_SONARQUBE_VER"
id "jacoco"
id 'io.codearte.nexus-staging' version '0.30.0'
id 'com.github.sherter.google-java-format' version '0.9' apply false
id 'io.codearte.nexus-staging' version "$PLUGIN_NEXUS_STAGING_VER"
id 'com.github.sherter.google-java-format' version "$PLUGIN_GOOGLE_JAVA_FORMAT_VER" apply false
}

sonarqube {
Expand Down Expand Up @@ -92,7 +92,7 @@ subprojects {
}

jacoco {
toolVersion = "0.8.7-SNAPSHOT"
toolVersion = "$PLUGIN_JACOCO_VER"
}

jacocoTestReport {
Expand Down
7 changes: 6 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,18 @@ SOURCE_COMPATIBILITY=1.8
TARGET_COMPATIBILITY=1.8
### Dependencies
LIB_GRAPHQL_JAVA_VER=16.2
LIB_EXTENDED_SCALARS_VERSION=16.0.1
LIB_EXTENDED_SCALARS_VER=16.0.1
LIB_SPRING_BOOT_VER=2.4.5
LIB_GRAPHQL_SERVLET_VER=11.1.0
LIB_GRAPHQL_JAVA_TOOLS_VER=11.0.1
LIB_GRAPHQL_ANNOTATIONS_VER=8.3
LIB_REFLECTIONS_VER=0.9.11
LIB_APACHE_COMMONS_TEXT=1.9
LIB_JSOUP_VER=1.13.1
### Plugins
PLUGIN_JACOCO_VER=0.8.7-SNAPSHOT
PLUGIN_SONARQUBE_VER=3.2.0
PLUGIN_NEXUS_STAGING_VER=0.30.0
PLUGIN_GOOGLE_JAVA_FORMAT_VER=0.9
###
org.gradle.daemon=true
2 changes: 1 addition & 1 deletion graphql-spring-boot-autoconfigure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api(project(":graphql-kickstart-spring-boot-starter-tools"))
api(project(":graphql-kickstart-spring-support"))
implementation "org.springframework.boot:spring-boot-autoconfigure"
api "com.graphql-java:graphql-java-extended-scalars:$LIB_EXTENDED_SCALARS_VERSION"
api "com.graphql-java:graphql-java-extended-scalars:$LIB_EXTENDED_SCALARS_VER"
api "com.graphql-java-kickstart:graphql-java-kickstart:$LIB_GRAPHQL_SERVLET_VER"
api "com.graphql-java-kickstart:graphql-java-servlet:$LIB_GRAPHQL_SERVLET_VER"
api "com.graphql-java:graphql-java:$LIB_GRAPHQL_JAVA_VER"
Expand Down
2 changes: 1 addition & 1 deletion graphql-spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: "java-platform"

dependencies {
constraints {
api "com.graphql-java:graphql-java-extended-scalars:$LIB_EXTENDED_SCALARS_VERSION"
api "com.graphql-java:graphql-java-extended-scalars:$LIB_EXTENDED_SCALARS_VER"
api "com.graphql-java:graphql-java:$LIB_GRAPHQL_JAVA_VER"
api "com.graphql-java-kickstart:graphql-java-servlet:$LIB_GRAPHQL_SERVLET_VER"
api "com.graphql-java-kickstart:graphql-java-kickstart:$LIB_GRAPHQL_SERVLET_VER"
Expand Down