File tree Expand file tree Collapse file tree 2 files changed +21
-10
lines changed
Expand file tree Collapse file tree 2 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 11name : Build Plugin
22on : [ push, pull_request ]
33jobs :
4- build :
4+ gradle- build :
55 runs-on : ubuntu-latest
6- strategy :
7- fail-fast : true
8- matrix :
9- jdk : [ 11 ]
106 steps :
11- - uses : actions/checkout@v2
12- - uses : actions/setup-java@v2
7+ - name : git clone
8+ uses : actions/checkout@v2
9+ - name : Set up JDK 11
10+ 1311 with :
14- java-version : ${{ matrix.jdk }}
15- distribution : temurin
16- - uses : eskatos/gradle-command-action@v1
12+ distribution : ' zulu'
13+ java-version : 11
14+ - name : gradle build
15+ id : gradle
16+ 1717 with :
1818 arguments : :build
Original file line number Diff line number Diff line change 11pluginManagement {
22 includeBuild(" gradle-build-logic" )
33}
4+ plugins {
5+ id(" com.gradle.enterprise" ) version " 3.10"
6+ }
47
58dependencyResolutionManagement {
69 repositories.mavenCentral()
710 repositories.gradlePluginPortal()
811}
912
1013rootProject.name = " java-module-dependencies"
14+
15+ gradleEnterprise {
16+ buildScan {
17+ publishAlways()
18+ termsOfServiceUrl = " https://gradle.com/terms-of-service"
19+ termsOfServiceAgree = " yes"
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments