diff options
-rw-r--r-- | .drone.yml | 9 | ||||
-rw-r--r-- | build.gradle.kts | 10 |
2 files changed, 18 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c18bd7c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,9 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: Build + image: eclipse-temurin:8-alpine + commands: + - ./gradlew build
\ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 2cf2eb9..d323f7a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -64,5 +64,13 @@ publishing { } } } - repositories { } + repositories { + maven("https://repo.nea.moe/releases") { + name = "neamoeReleases" + credentials(PasswordCredentials::class) + authentication { + create<BasicAuthentication>("basic") + } + } + } } |