Skip to content

Commit 849817a

Browse files
author
Francisco Solis
authored
Merge pull request #23 from TheProgramSrc/fix/description-and-jitci
Fixes
2 parents 8a33835 + 6a817e1 commit 849817a

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1+
# v0.1.1 - Snapshot
2+
* Migration to JitPack
3+
* Added JitCI badges
4+
* Fixed description
5+
16
# v0.1.0 - Snapshot
27
Hello, World!

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1+
[![](https://jitci.com/gh/TheProgramSrc/SimpleCore-TasksModule/svg)](https://jitci.com/gh/TheProgramSrc/SimpleCore-TasksModule)
2+
[![](https://jitpack.io/v/xyz.theprogramsrc/SimpleCore-TasksModule.svg)](https://jitpack.io/#xyz.theprogramsrc/SimpleCore-TasksModule)
3+
14
# SimpleCore-TasksModule
2-
Tasks manager module for SimpleCore API.
5+
Tasks manager module for SimpleCore API.<br>
6+
7+
[![Discord](https://i.imgur.com/J1XhmMd.png)](https://go.theprogramsrc.xyz/discord)
8+
[![Terms of Service](https://i.imgur.com/4tFAGtE.png)](https://go.theprogramsrc.xyz/tos)
9+
[![Become a Patron](https://i.imgur.com/h9Y1X2X.png)](https://go.theprogramsrc.xyz/patreon)
10+
311

412
# Documentation
5-
* [Wiki](https://github.com/TheProgramSrc/SimpleCore-NetworkingModule/wiki)
6-
* [JavaDocs](https://theprogramsrc.github.io/SimpleCore-TasksModule/)
13+
* [Wiki](https://github.com/TheProgramSrc/SimpleCore-TasksModule/wiki)
14+
* [JavaDocs](https://docs.theprogramsrc.xyz/SimpleCore-TasksModule/)

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,16 @@ plugins {
77
id 'org.jetbrains.dokka' version '1.6.21'
88
}
99

10-
def projectVersion = (System.getenv("VERSION") ?: '0.1.0-SNAPSHOT').replaceFirst("v", "").replace('/', '')
10+
def projectVersion = (System.getenv("VERSION") ?: '0.1.1-SNAPSHOT').replaceFirst("v", "").replace('/', '')
1111

1212
group 'xyz.theprogramsrc'
1313
version projectVersion
14-
description 'Networking module for SimpleCore API.'
14+
description 'Tasks manager module for SimpleCore API.'
1515

1616
repositories {
1717
mavenLocal()
1818
mavenCentral()
1919

20-
maven { url 'https://repo.theprogramsrc.xyz/repository/maven-public/' }
21-
maven { url 'https://repo.theprogramsrc.xyz/repository/simplecoreapi-modules/' }
2220
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
2321
maven { url 'https://oss.sonatype.org/content/repositories/releases/' }
2422
maven { url 'https://oss.sonatype.org/content/groups/public/' }
@@ -85,10 +83,12 @@ publishing {
8583
repositories {
8684
if(System.getenv('env') == 'prod'){
8785
maven {
88-
name = 'TheProgramSrcRepository'
89-
credentials.username = System.getenv('NEXUS_USERNAME')
90-
credentials.password = System.getenv('NEXUS_PASSWORD')
91-
url = uri("https://repo.theprogramsrc.xyz/repository/simplecoreapi-modules/")
86+
name = 'GitHubPackages'
87+
url = 'https://maven.pkg.github.com/TheProgramSrc/SimpleCore-TasksModule'
88+
credentials {
89+
username = System.getenv('GITHUB_ACTOR')
90+
password = System.getenv('GITHUB_TOKEN')
91+
}
9292
}
9393
}else{
9494
mavenLocal()
@@ -110,4 +110,4 @@ publishing {
110110
}
111111
}
112112

113-
publish.dependsOn clean, test, jar, shadowJar
113+
publish.dependsOn clean, test, jar, shadowJar

0 commit comments

Comments
 (0)