correct maven name to org.domaindrivenarchitecture
This commit is contained in:
parent
27a803a591
commit
102cf4612b
1 changed files with 5 additions and 5 deletions
10
build.gradle
10
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'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue