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

Commit 73bd65a

Browse files
committed
Removed release plugin
1 parent 7f51bd9 commit 73bd65a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

build.gradle

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,14 @@ buildscript {
2626
}
2727
dependencies {
2828
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
29+
classpath 'net.researchgate:gradle-release:2.7.0'
2930
}
3031
}
3132

33+
plugins {
34+
id 'net.researchgate.release' version '2.7.0'
35+
}
36+
3237
subprojects {
3338
apply plugin: 'idea'
3439
apply plugin: 'java'
@@ -151,6 +156,26 @@ subprojects {
151156
}
152157
}
153158

159+
release {
160+
tagTemplate = 'v${version}'
161+
failOnPublishNeeded = false
162+
ignoredSnapshotDependencies = [
163+
'com.graphql-java-kickstart:graphiql-spring-boot-autoconfigure',
164+
'com.graphql-java-kickstart:graphiql-spring-boot-starter',
165+
'com.graphql-java-kickstart:graphql-spring-boot-autoconfigure',
166+
'com.graphql-java-kickstart:graphql-spring-boot-starter',
167+
'com.graphql-java-kickstart:graphql-spring-boot-starter-test',
168+
'com.graphql-java-kickstart:graphql-spring-boot-test',
169+
'com.graphql-java-kickstart:graphql-spring-boot-test-autoconfigure',
170+
'com.graphql-java-kickstart:voyager-spring-boot-autoconfigure',
171+
'com.graphql-java-kickstart:voyager-spring-boot-starter'
172+
]
173+
}
174+
175+
task build {
176+
dependsOn subprojects.findResults { it.tasks.findByName('assemble') }
177+
}
178+
154179
task wrapper(type: Wrapper) {
155180
gradleVersion = "${GRADLE_WRAPPER_VER}"
156181
}

0 commit comments

Comments
 (0)