Skip to content

Commit

Permalink
kotlinbukkit 1.0.0-rc.9 - Minecraft 1.15.1, Kotlin 1.3.61, and more
Browse files Browse the repository at this point in the history
  • Loading branch information
finalchild committed Jan 3, 2020
1 parent 7228d8e commit 697befe
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .bintraydescriptor.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"subject": "finalchild"
},
"version": {
"name": "1.0.0-rc.8",
"name": "1.0.0-rc.9",
"gpgSign": true
},
"files": [
Expand Down
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -15,14 +15,14 @@
*/

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.50'
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'java-library'
id 'maven-publish'
}

group 'me.finalchild'
version '1.0.0-rc.8'
version '1.0.0-rc.9'

description 'Provides Kotlin stdlib and extensions to Bukkit plugins.'

Expand All @@ -39,7 +39,7 @@ repositories {
}

dependencies {
api(group: 'com.destroystokyo.paper', name: 'paper-api', version: '1.14.4-R0.1-SNAPSHOT') {
api(group: 'com.destroystokyo.paper', name: 'paper-api', version: '1.15.1-R0.1-SNAPSHOT') {
exclude group: 'junit', module: 'junit'
}
api group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8'
Expand All @@ -63,8 +63,9 @@ compileJava {

compileKotlin.destinationDir = compileJava.destinationDir

tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
compileKotlin {
kotlinOptions {
freeCompilerArgs = ['-progressive']
jvmTarget = '12'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/me/finalchild/kotlinbukkit/KotlinBukkit.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/me/finalchild/kotlinbukkit/util/Util.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2019 Bak Jaeon (finalchild) and Ranol
* Copyright 2017-2020 Bak Jaeon (finalchild) and Ranol
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 697befe

Please sign in to comment.