Skip to content

Commit

Permalink
Fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Feb 27, 2022
1 parent 545eb5f commit 1395a1e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
15 changes: 12 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,21 @@ plugins {
id 'io.github.gradle-nexus.publish-plugin' version "1.1.0"
}

group = 'de.undercouch'
version = '3.0.0-alpha.6'

nexusPublishing {
repositories {
sonatype()
}
}

subprojects {
apply plugin: 'jacoco'
apply plugin: 'java'

version = '3.0.0-alpha.6'
group = 'de.undercouch'
group = rootProject.group
version = rootProject.version
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

Expand All @@ -17,7 +26,7 @@ subprojects {
url 'https://oss.sonatype.org/content/groups/public'
}
}

dependencies {
testImplementation 'junit:junit:4.13.2'
}
Expand Down
6 changes: 0 additions & 6 deletions citeproc-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,3 @@ tasks.withType(Sign) {
// only sign release artifacts and not snapshots
onlyIf { isReleaseVersion }
}

nexusPublishing {
repositories {
sonatype()
}
}

0 comments on commit 1395a1e

Please sign in to comment.