We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab0974 commit 89c5139Copy full SHA for 89c5139
cockroachdb-dialect/build.gradle.kts
@@ -1,5 +1,10 @@
1
plugins {
2
alias(libs.plugins.grammar.kit.composer)
3
+ `maven-publish`
4
+}
5
+
6
+repositories {
7
+ maven("https://jitpack.io")
8
}
9
10
grammarKit {
@@ -14,3 +19,14 @@ dependencies {
14
19
testImplementation(libs.intellij.analysis)
15
20
testImplementation(libs.sql.psi.test.fixtures)
16
21
22
23
+publishing {
24
+ publications {
25
+ create<MavenPublication>("maven") {
26
+ groupId = "com.faire"
27
+ artifactId = "sqldelight-cockroachdb-dialect"
28
29
+ from(components["java"])
30
+ }
31
32
jitpack.yml
@@ -0,0 +1,2 @@
+jdk:
+ - openjdk17
0 commit comments