@@ -2,11 +2,11 @@ plugins {
2
2
id ' org.jetbrains.kotlin.jvm' version ' 1.7.20'
3
3
id ' maven-publish'
4
4
id ' com.github.johnrengelman.shadow' version ' 7.1.2'
5
- id ' net.kyori .blossom' version ' 1.2.0 '
5
+ id ' cl.franciscosolis .blossom-extended ' version ' 1.3.1 '
6
6
id ' org.jetbrains.dokka' version ' 1.7.20'
7
7
}
8
8
9
- def projectVersion = (System . getenv(" VERSION" ) ?: ' 0.1.2 -SNAPSHOT' ). replaceFirst(" v" , " " ). replace(' /' , ' ' )
9
+ def projectVersion = (System . getenv(" VERSION" ) ?: ' 0.1.3 -SNAPSHOT' ). replaceFirst(" v" , " " ). replace(' /' , ' ' )
10
10
11
11
group ' xyz.theprogramsrc'
12
12
version projectVersion
@@ -27,7 +27,7 @@ repositories {
27
27
28
28
dependencies {
29
29
compileOnly ' org.jetbrains.kotlin:kotlin-stdlib:1.7.20'
30
- compileOnly ' xyz.theprogramsrc:simplecoreapi:0.4.0 -SNAPSHOT'
30
+ compileOnly ' xyz.theprogramsrc:simplecoreapi:0.4.5 -SNAPSHOT'
31
31
32
32
implementation ' me.carleslc.Simple-YAML:Simple-Yaml:1.8.2'
33
33
@@ -90,10 +90,12 @@ publishing {
90
90
repositories {
91
91
if (System . getenv(' env' ) == ' prod' ){
92
92
maven {
93
- name = ' TheProgramSrcRepository'
94
- credentials. username = System . getenv(' NEXUS_USERNAME' )
95
- credentials. password = System . getenv(' NEXUS_PASSWORD' )
96
- url = uri(" https://repo.theprogramsrc.xyz/repository/simplecoreapi-modules/" )
93
+ name = ' GitHubPackages'
94
+ url = ' https://maven.pkg.github.com/TheProgramSrc/SimpleCore-Filesmodule'
95
+ credentials {
96
+ username = System . getenv(' GITHUB_ACTOR' )
97
+ password = System . getenv(' GITHUB_TOKEN' )
98
+ }
97
99
}
98
100
}else {
99
101
mavenLocal()
0 commit comments