diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index f2c1165b..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,35 +0,0 @@ -# Gradle -# Build your Java project and run tests with Gradle using a Gradle wrapper script. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/java - -trigger: -- master - -pool: - vmImage: 'windows-latest' - -variables: - GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle - BUILD_NUMBER: $(Build.BuildId) - -steps: -- task: Cache@2 - inputs: - key: 'gradle | "$(Agent.OS)"' - path: '$(GRADLE_USER_HOME)' - restoreKeys: 'gradle' -- task: Gradle@2 - env: - ACCESS_TOKEN: $(System.AccessToken) - inputs: - workingDirectory: '' - gradleWrapperFile: 'gradlew' - options: '--no-daemon --build-cache' - gradleOptions: '-Xmx3072m' - javaHomeOption: 'JDKVersion' - jdkVersionOption: '1.8' - jdkArchitectureOption: 'x64' - publishJUnitResults: true - testResultsFiles: '**/TEST-*.xml' - tasks: 'clean build publish' diff --git a/build.gradle b/build.gradle index e5ccf992..04512f53 100644 --- a/build.gradle +++ b/build.gradle @@ -155,11 +155,7 @@ publishing { } repositories { maven { - url 'https://pkgs.dev.azure.com/Ellpeck/Public/_packaging/All/maven/v1' - credentials { - username "Azure DevOps Services" - password System.getenv('ACCESS_TOKEN') - } + url "file://" + System.getenv("local_maven") } } } \ No newline at end of file