Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit 4391d03

Browse files
committed
Fix gradle issues
1 parent bb896eb commit 4391d03

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

build.gradle

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins {
2828
}
2929

3030
group 'org.feup.lapd.middleware'
31-
version '1.0.1'
31+
version '1.0.2'
3232
def ktor_version = '1.5.2'
3333
def arrow_version = "0.13.1"
3434
def protobufVersion = '3.12.2'
@@ -167,4 +167,12 @@ task startGrpcExample(type: JavaExec) {
167167
task startApacheAvroExample(type: JavaExec) {
168168
classpath = sourceSets.main.runtimeClasspath
169169
main = 'org.feup.lapd.middleware.ApacheAvroExample'
170-
}
170+
}
171+
172+
publishing {
173+
publications {
174+
myLibrary(MavenPublication) {
175+
from components.java
176+
}
177+
}
178+
}

0 commit comments

Comments
 (0)