Skip to content

Commit 9064686

Browse files
enable publish to local maven repo
1 parent ceb157c commit 9064686

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

build.gradle

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
id 'com.diffplug.gradle.spotless' version '3.24.0'
66
id 'com.github.spotbugs' version '2.0.0'
77
id 'idea'
8+
id 'maven-publish'
89
}
910

1011
repositories {
@@ -44,3 +45,16 @@ dependencies {
4445
api 'org.glassfish.jaxb:jaxb-runtime:2.3.0'
4546
implementation 'javax.activation:activation:1.1.1'
4647
}
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

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'discogs-dump-reader'

0 commit comments

Comments
 (0)