diff --git a/build.gradle b/build.gradle index 89c9b8e..bf28edc 100644 --- a/build.gradle +++ b/build.gradle @@ -30,10 +30,6 @@ plugins { group 'com.exactpro.th2' version release_version -ext { - sharedDir = file("${project.rootDir}/shared") -} - repositories { mavenCentral() maven { @@ -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) { @@ -186,10 +181,6 @@ publishing { } } repositories { - maven { - name = 'localRepo' - url = sharedDir - } //Nexus repo to publish from gitlab maven { name = 'nexusRepository' @@ -231,7 +222,3 @@ tasks.register('integrationTest', Test) { includeTags('integration-test') } } - -clean { - delete sharedDir -}