We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfd6bb commit 0df7f56Copy full SHA for 0df7f56
build.gradle
@@ -44,3 +44,16 @@ tasks.withType(JavaCompile).configureEach {
44
it.options.encoding = "UTF-8"
45
it.options.release = 17
46
}
47
+
48
+publishing {
49
+ publications {
50
+ maven(MavenPublication) {
51
+ from components.java
52
+ }
53
54
+}
55
56
+// prevent caching the meteor-client for too long
57
+configurations.all {
58
+ resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
59
jitpack.yml
@@ -0,0 +1,3 @@
1
+before_install:
2
+ - sdk install java 17.0.2-tem
3
+ - sdk use java 17.0.2-tem
0 commit comments