|
1 | 1 | import org.apache.tools.ant.filters.ReplaceTokens
|
2 | 2 |
|
3 | 3 | plugins {
|
4 |
| - id 'org.jetbrains.kotlin.jvm' version '1.6.0' |
| 4 | + id 'org.jetbrains.kotlin.jvm' version '1.6.10' |
5 | 5 | id 'maven-publish'
|
6 |
| - id 'com.github.johnrengelman.shadow' version '7.1.0' |
| 6 | + id 'com.github.johnrengelman.shadow' version '7.1.2' |
7 | 7 | id 'org.jetbrains.dokka' version '1.6.0'
|
8 | 8 | }
|
9 | 9 |
|
10 |
| -def projectVersion = (System.getenv("VERSION") ?: '0.2.0-SNAPSHOT').replaceFirst("v", "").replace('/', '') |
| 10 | +def projectVersion = (System.getenv("VERSION") ?: '0.2.1-SNAPSHOT').replaceFirst("v", "").replace('/', '') |
11 | 11 |
|
12 | 12 | group 'xyz.theprogramsrc'
|
13 | 13 | version projectVersion
|
14 | 14 | description 'Just a logger for the SimpleCore API'
|
15 | 15 |
|
16 | 16 | repositories {
|
17 |
| - mavenLocal() |
18 | 17 | mavenCentral()
|
19 | 18 |
|
20 | 19 | maven { url 'https://repo.theprogramsrc.xyz/repository/maven-public/' }
|
21 | 20 | maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
22 | 21 | maven { url 'https://oss.sonatype.org/content/repositories/releases/' }
|
23 | 22 | maven { url 'https://oss.sonatype.org/content/groups/public/' }
|
24 | 23 | maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
|
25 |
| - maven { url 'https://repo.codemc.org/repository/maven-public' } |
26 |
| - maven { url 'https://repo.codemc.org/repository/nms' } |
27 |
| - maven { url 'https://jitpack.io' } |
| 24 | + maven { url 'https://repo.codemc.org/repository/maven-public/' } |
| 25 | + maven { url 'https://jitpack.io/' } |
28 | 26 | }
|
29 | 27 |
|
30 | 28 | dependencies {
|
31 |
| - compileOnly 'org.jetbrains.kotlin:kotlin-stdlib:1.6.0' |
32 |
| - compileOnly 'org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT' |
33 |
| - compileOnly 'net.md-5:bungeecord-api:1.17-R0.1-SNAPSHOT' |
34 |
| - compileOnly 'xyz.theprogramsrc:simplecoreapi:0.1.8-SNAPSHOT' |
| 29 | + compileOnly 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10' |
| 30 | + compileOnly 'org.spigotmc:spigot-api:1.18.1-R0.1-SNAPSHOT' |
| 31 | + compileOnly 'net.md-5:bungeecord-api:1.18-R0.1-SNAPSHOT' |
| 32 | + compileOnly 'xyz.theprogramsrc:simplecoreapi:0.1.12-SNAPSHOT' |
35 | 33 |
|
36 |
| - compileOnly 'org.apache.logging.log4j:log4j-api:2.17.0' |
37 |
| - compileOnly 'org.apache.logging.log4j:log4j-core:2.17.0' |
| 34 | + compileOnly 'org.apache.logging.log4j:log4j-api:2.17.1' |
| 35 | + compileOnly 'org.apache.logging.log4j:log4j-core:2.17.1' |
38 | 36 |
|
39 | 37 | testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
|
40 | 38 | }
|
|
0 commit comments