From 102cf4612bc6ad6112277d68d3591dae0024da91 Mon Sep 17 00:00:00 2001 From: az Date: Sat, 7 Aug 2021 19:12:22 +0200 Subject: [PATCH] correct maven name to org.domaindrivenarchitecture --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index ffbea9e..84a255f 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ apply plugin: 'maven-publish' apply plugin: 'kotlinx-serialization' -group = 'io.provs' +group = 'org.domaindrivenarchitecture.provs' version = '0.8.14-SNAPSHOT' repositories { @@ -78,7 +78,7 @@ task fatJar(type: Jar) { manifest { attributes 'Implementation-Title': 'Gradle Jar File Example', 'Implementation-Version': project.version, - 'Main-Class': 'io.provs.core.entry.EntryKt' + 'Main-Class': 'org.domaindrivenarchitecture.provs.core.entry.EntryKt' } archivesBaseName = project.name + '-all' duplicatesStrategy(DuplicatesStrategy.EXCLUDE) @@ -98,7 +98,7 @@ task fatJarLatest(type: Jar) { manifest { attributes 'Implementation-Title': 'Gradle Jar File Example', 'Implementation-Version': project.version, - 'Main-Class': 'io.provs.core.entry.EntryKt' + 'Main-Class': 'org.domaindrivenarchitecture.provs.core.entry.EntryKt' } with jar archiveFileName = 'provs-fat-latest.jar' @@ -120,7 +120,7 @@ task uberJar(type: Jar) { manifest { attributes 'Implementation-Title': 'Gradle Jar File Example', 'Implementation-Version': project.version, - 'Main-Class': 'io.provs.core.entry.EntryKt' + 'Main-Class': 'org.domaindrivenarchitecture.provs.core.entry.EntryKt' } archiveClassifier = 'uber' } @@ -141,7 +141,7 @@ task uberJarLatest(type: Jar) { manifest { attributes 'Implementation-Title': 'Gradle Jar File Example', 'Implementation-Version': project.version, - 'Main-Class': 'io.provs.core.entry.EntryKt' + 'Main-Class': 'org.domaindrivenarchitecture.provs.core.entry.EntryKt' } archiveFileName = 'provs-latest.jar' }