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

Commit d05b8b8

Browse files
committed
trying a different approach to enable jitpack
1 parent 3493f39 commit d05b8b8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

gradle/grails.commons.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
}
1111

12-
group "org.grails.plugins"
12+
group(System.getenv('GROUP') ?: 'org.grails.plugins')
1313

1414
apply plugin:"eclipse"
1515
apply plugin:"idea"

gradle/groovy.commons.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
group "agorapulse.libs"
1+
group(System.getenv('GROUP') ?: "agorapulse.libs")
22

33
apply plugin: "groovy"
44
apply plugin: "maven-publish"

jitpack.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
jdk:
2+
- openjdk8
3+
install:
4+
- ./gradlew publishToMavenLocal -Pversion=$VERSION

0 commit comments

Comments
 (0)