Skip to content

Commit

Permalink
removed shared dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanclry committed Jan 31, 2023
1 parent e11af27 commit 0301463
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ plugins {
group 'com.exactpro.th2'
version release_version

ext {
sharedDir = file("${project.rootDir}/shared")
}

repositories {
mavenCentral()
maven {
Expand Down Expand Up @@ -136,8 +132,7 @@ tasks.withType(PublishToMavenRepository) {
project.hasProperty('nexus_url')) ||
(repository == publishing.repositories.sonatype &&
project.hasProperty('sonatypeUsername') &&
project.hasProperty('sonatypePassword')) ||
(repository == publishing.repositories.localRepo)
project.hasProperty('sonatypePassword'))
}
}
tasks.withType(Sign) {
Expand Down Expand Up @@ -186,10 +181,6 @@ publishing {
}
}
repositories {
maven {
name = 'localRepo'
url = sharedDir
}
//Nexus repo to publish from gitlab
maven {
name = 'nexusRepository'
Expand Down Expand Up @@ -231,7 +222,3 @@ tasks.register('integrationTest', Test) {
includeTags('integration-test')
}
}

clean {
delete sharedDir
}

0 comments on commit 0301463

Please sign in to comment.