We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb157c commit 9064686Copy full SHA for 9064686
build.gradle
@@ -5,6 +5,7 @@ plugins {
5
id 'com.diffplug.gradle.spotless' version '3.24.0'
6
id 'com.github.spotbugs' version '2.0.0'
7
id 'idea'
8
+ id 'maven-publish'
9
}
10
11
repositories {
@@ -44,3 +45,16 @@ dependencies {
44
45
api 'org.glassfish.jaxb:jaxb-runtime:2.3.0'
46
implementation 'javax.activation:activation:1.1.1'
47
48
+
49
+group = 'tslic.discogs'
50
+version = '1.0'
51
+sourceCompatibility = '1.8'
52
+targetCompatibility = '1.8'
53
54
+publishing {
55
+ publications {
56
+ mavenJava(MavenPublication) {
57
+ from components.java
58
+ }
59
60
+}
settings.gradle
@@ -0,0 +1 @@
1
+rootProject.name = 'discogs-dump-reader'
0 commit comments