correct maven name to org.domaindrivenarchitecture

merge-requests/1/merge
az 3 years ago
parent 27a803a591
commit 102cf4612b

@ -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'
}

Loading…
Cancel
Save