Skip to content

Commit b4cff7d

Browse files
committed
Update gradle, add github workflow
1 parent 7078bbe commit b4cff7d

5 files changed

Lines changed: 24 additions & 2 deletions

File tree

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ insert_final_newline = true
44
indent_style = space
55
indent_size = 4
66
trim_trailing_whitespace = true
7+
end_of_line = lf
78

89
[*.java]
910
ij_java_class_count_to_use_import_on_demand = 999999

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build.yml
2+
on:
3+
- push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v5
10+
with:
11+
fetch-depth: '0'
12+
- name: Set up Java
13+
uses: actions/setup-java@v5
14+
with:
15+
distribution: 'temurin'
16+
java-version: 25
17+
java-package: jdk
18+
- name: Setup Gradle
19+
uses: gradle/actions/setup-gradle@v4
20+
- name: Build with Gradle
21+
run: ./gradlew build

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ quarters = "e9ed8a133a"
66
towny = "0.102.0.0"
77
mysterymaster-api = "1.0.0"
88
superbvote = "0.6.0"
9-
conventions = "1.0.6"
9+
conventions = "1.0.8"
1010

1111
[libraries]
1212
discordsrv = { group = "com.discordsrv", name = "discordsrv", version.ref = "discordsrv" }

gradle/wrapper/gradle-wrapper.jar

542 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)