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

Commit fb29632

Browse files
committed
Add maven stuff
1 parent 9a1d486 commit fb29632

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

build.gradle

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
plugins {
2+
id 'maven-publish'
3+
}
4+
15
group 'com.kylecorry.geometry'
26
version '0.7'
37

@@ -16,3 +20,31 @@ dependencies {
1620
jar {
1721
from sourceSets.main.allSource
1822
}
23+
//
24+
//publishing {
25+
// publications {
26+
// mavenJava(MavenPublication) {
27+
// pom {
28+
// description = 'A library of geometric representations'
29+
// licenses {
30+
// license {
31+
// name = 'GNU General Public License v3.0'
32+
// url = 'https://www.gnu.org/licenses/gpl-3.0.en.html'
33+
// }
34+
// }
35+
// developers {
36+
// developer {
37+
// id = 'kylecorry31'
38+
// name = 'Kyle Corry'
39+
// email = 'kylecorry31@gmail.com'
40+
// }
41+
// }
42+
// scm {
43+
// connection = 'scm:git:git://github.com/kylecorry31/Geometry.git'
44+
// developerConnection = 'scm:git:ssh://github.com/kylecorry31/Geometry.git'
45+
// url = 'https://github.com/kylecorry31/Geometry'
46+
// }
47+
// }
48+
// }
49+
// }
50+
//}

0 commit comments

Comments
 (0)