Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 832d377

Browse files
authored
Merge pull request #36 from k163377/fix_ci
Fix buildscript.
2 parents ee7f0b5 + f3dc5b7 commit 832d377

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: 'Auto Author Assign'
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, reopened]
6+
7+
jobs:
8+
assign-author:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: toshimaru/[email protected]
12+
with:
13+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

build.gradle.kts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("maven")
33
id("java")
4-
id("org.jetbrains.kotlin.jvm") version "1.4.21"
4+
kotlin("jvm") version "1.4.21"
55
id("org.jlleitschuh.gradle.ktlint") version "9.4.1"
66
id("jacoco")
77
}
@@ -13,22 +13,11 @@ java {
1313
sourceCompatibility = JavaVersion.VERSION_1_8
1414
}
1515

16-
buildscript {
17-
repositories {
18-
mavenCentral()
19-
}
20-
21-
dependencies {
22-
classpath(kotlin("gradle-plugin"))
23-
}
24-
}
25-
2616
repositories {
2717
mavenCentral()
2818
}
2919

3020
dependencies {
31-
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
3221
implementation(kotlin("reflect"))
3322
// https://mvnrepository.com/artifact/org.jetbrains/annotations
3423
compileOnly(group = "org.jetbrains", name = "annotations", version = "20.1.0")

0 commit comments

Comments
 (0)