File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
org.spoofax.interpreter.library.index Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,14 @@ dependencies {
21
21
testRuntimeOnly(libs.junit.vintage)
22
22
}
23
23
24
+ publishing {
25
+ publications {
26
+ create<MavenPublication >(" mavenJava" ) {
27
+ from(components[" java" ])
28
+ }
29
+ }
30
+ }
31
+
24
32
tasks.test {
25
33
exclude(" **/performance/**" ) // Ignore performance benchmarks.
26
34
}
Original file line number Diff line number Diff line change @@ -25,6 +25,14 @@ dependencies {
25
25
testCompileOnly(libs.jakarta.annotation)
26
26
}
27
27
28
+ publishing {
29
+ publications {
30
+ create<MavenPublication >(" mavenJava" ) {
31
+ from(components[" java" ])
32
+ }
33
+ }
34
+ }
35
+
28
36
// Copy test resources into classes directory, to make them accessible as classloader resources at runtime.
29
37
val copyTestResourcesTask = tasks.create<Copy >(" copyTestResources" ) {
30
38
from(" $projectDir /test-resources" )
You can’t perform that action at this time.
0 commit comments