Skip to content

Commit e09991d

Browse files
committed
Merge branch '1.4.x'
2 parents 4b1e6c4 + 96d6846 commit e09991d

File tree

66 files changed

+623
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+623
-113
lines changed

.github/workflows/test.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
on: push
3+
permissions:
4+
contents: read
5+
6+
jobs:
7+
check:
8+
name: Gradle check
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Git clone
12+
uses: actions/checkout@v3
13+
- name: Install Java
14+
uses: actions/setup-java@v3
15+
with:
16+
distribution: temurin
17+
java-version-file: .java-version
18+
- name: Setup Gradle
19+
uses: gradle/gradle-build-action@v2
20+
- name: Check
21+
run: ./gradlew check

.java-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.8

.travis.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 17 additions & 8 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

samples/custom-paths/settings.gradle renamed to examples/custom-paths/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ pluginManagement {
22
includeBuild '../..'
33
}
44

5-
rootProject.name = 'custom-paths-sample'
5+
rootProject.name = 'custom-paths-example'
File renamed without changes.

0 commit comments

Comments
 (0)