Skip to content

Commit

Permalink
DAMMIT GRADLE
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed May 31, 2023
1 parent 7e6ed39 commit 53f400d
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@ reckon {
stageFromProp('beta', 'rc', 'final')
}

repositories {
mavenLocal()
}

dependencies {

}

processResources {
inputs.property "version", project.version.toString()

Expand All @@ -43,3 +35,27 @@ processResources {
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}

publishing {
publications {
maven(MavenPublication) {
from components.java

pom {
name = "Romanizer"
description = "Provides converters for roman numerals that prioritises conciseness"
licenses {
license {
name = "MIT Public License"
url = "https://tlo.mit.edu/learn-about-intellectual-property/software-and-open-source-licensing"
}
}
developers {
developer {
id = "sollace"
}
}
}
}
}
}

0 comments on commit 53f400d

Please sign in to comment.