Compare commits

..

5 Commits

Author SHA1 Message Date
Etzelia 9daca896cd
HTTPS jcenter
Signed-off-by: Etzelia <etzelia@hotmail.com>
2020-09-07 16:16:01 -05:00
Etzelia bb4f4522d9
Clean up repositories
Signed-off-by: Etzelia <etzelia@hotmail.com>
2020-09-07 16:14:37 -05:00
Etzelia 720a4f20a7
Move to Gradle
Signed-off-by: Etzelia <etzelia@hotmail.com>
2020-09-07 15:56:25 -05:00
Joey Hines f62b9a4ac4 Added TickDuration (#10)
Added tests to .drone.yml

+ Added `mvn test` step to compliance

Merge branch 'master' of https://git.etztech.xyz/Minecraft/PluginAPI into time_parser

Added tests and renamed BukkitDuration to TickDuration

Added BukkitDuration

+ Designed for parsing time arguments easily

Co-authored-by: Joey Hines <joey@ahines.net>
Reviewed-on: https://git.etztech.xyz/Minecraft/PluginAPI/pulls/10
Reviewed-by: Etzelia <etzelia@hotmail.com>
2020-09-07 00:17:18 +02:00
Etzelia 6e90ba9587 Drone (#9)
Add '.drone.yml'

Reviewed-on: https://git.etztech.xyz/Minecraft/PluginAPI/pulls/9
Reviewed-by: ZeroHD <joey@ahines.net>
2020-09-05 17:17:49 +02:00
5 changed files with 40 additions and 24 deletions

35
.drone.yml 100644
View File

@ -0,0 +1,35 @@
---
kind: pipeline
name: compliance
trigger:
event:
- pull_request
steps:
- name: build
pull: always
image: gradle:6.6
commands:
- gradle build
- gradle test
---
kind: pipeline
name: release
trigger:
branch:
- master
event:
- push
steps:
- name: publish
pull: always
image: gradle:6.6
environment:
MAVEN_PASSWORD:
from_secret: maven_password
commands:
- gradle publish

View File

@ -1,19 +0,0 @@
clone:
git:
image: "woodpeckerci/plugin-git:next"
pipeline:
compliance:
commands:
- "gradle build"
- "gradle test"
image: "gradle:7.3-jdk17"
when:
event: pull_request
release:
commands:
- "gradle publish"
secrets:
- maven_password
image: "gradle:7.3-jdk17"
when:
branch: master

View File

@ -4,7 +4,7 @@ A collection of APIs for use in plugins.
## Releases
[Reposilite](https://mvn.birbmc.com/releases/xyz/etztech/plugin-api)
[Reposilite](https://repo.etztech.xyz/releases/xyz/etztech/plugin-api)
## MinecraftManager Interface

View File

@ -34,10 +34,10 @@ publishing {
}
repositories {
maven {
name = "jojodev"
url = "https://mvn.jojodev.com/releases"
name = "etztech"
url = "https://repo.etztech.xyz/releases"
credentials {
username = "admin"
username = "etzelia"
password = System.getenv("MAVEN_PASSWORD")
}
}

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists