Skip to content

Commit 709f27b

Browse files
author
manpreet.singh
committed
Add support to publish to maven
1 parent ad191df commit 709f27b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

sseclient/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id 'java'
3+
id 'maven-publish'
34
}
45

56
group 'dev.manpreet'
@@ -50,4 +51,16 @@ test {
5051
}
5152
}
5253
}
54+
}
55+
56+
publishing {
57+
publications {
58+
maven(MavenPublication) {
59+
groupId = ''
60+
artifactId = ''
61+
version = '1.0'
62+
63+
from components.java
64+
}
65+
}
5366
}

0 commit comments

Comments
 (0)