From 20cc920977360968b241792f0054cd32210c75ee Mon Sep 17 00:00:00 2001 From: Chanseok Oh Date: Wed, 13 Oct 2021 18:08:24 -0400 Subject: [PATCH 1/2] Update ci.yaml --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f14a3e444..89788f258 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: - name: Gradle Test run: ./gradlew test - name: Gradle Build - run: ./gradlew build install + run: ./gradlew build publishToMavenLocal format: runs-on: ubuntu-latest steps: @@ -31,4 +31,4 @@ jobs: with: java-version: 8 - name: Java Linter - run: ./gradlew googleJavaFormat \ No newline at end of file + run: ./gradlew googleJavaFormat From 3d4662b0560a3b16db14762ff49a8dcc3d3e02f5 Mon Sep 17 00:00:00 2001 From: Chanseok Oh Date: Wed, 13 Oct 2021 18:09:52 -0400 Subject: [PATCH 2/2] Remove deprecated `maven` plugin --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3361a3dec..c5ce03968 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,6 @@ apply plugin: 'idea' apply plugin: 'jacoco' apply plugin: 'signing' apply plugin: 'maven-publish' -apply plugin: 'maven' apply plugin: 'com.github.sherter.google-java-format' apply plugin: 'io.github.gradle-nexus.publish-plugin'