Skip to content

Commit 7c536ca

Browse files
authored
Merge pull request #2 from manpreet333/feature/master/add-publish-support
Add support to publish to maven
2 parents e5fe667 + 709f27b commit 7c536ca

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)