Skip to content
This repository was archived by the owner on Dec 7, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
42dec2f
Add validation for main class and api version
rainbowdashlabs May 30, 2024
a8ca486
remove unused import
rainbowdashlabs May 30, 2024
121032b
Account for minor versions from 1.20.5 onwards
rainbowdashlabs Jun 4, 2024
4d06aae
Change group id
rainbowdashlabs Sep 1, 2024
8a8cc46
Setup automatic publishing
rainbowdashlabs Oct 31, 2024
78abe17
[skip ci] Update license and setup renovate config
rainbowdashlabs Oct 31, 2024
ed1a2ad
[skip ci] Move usage to the wiki
rainbowdashlabs Oct 31, 2024
753d7f4
Merge branch 'dev' into feature/main-and-api-validation
rainbowdashlabs Oct 31, 2024
020afd9
Update workflows (#3)
rainbowdashlabs Oct 31, 2024
a910989
Merge branch 'dev' into feature/main-and-api-validation
rainbowdashlabs Oct 31, 2024
02e4343
Trigger deployment
rainbowdashlabs Oct 31, 2024
f320ef8
Update workflows (#3)
rainbowdashlabs Oct 31, 2024
ea48a5b
Always run build
rainbowdashlabs Oct 31, 2024
0d036d7
chore(deps): update plugin com.diffplug.spotless to v6.25.0 (#5)
renovate[bot] Oct 31, 2024
b6bc9eb
chore(deps): update actions/setup-java action to v2.5.1 (#4)
renovate[bot] Oct 31, 2024
80478e0
fix(deps): update dependency com.fasterxml.jackson.dataformat:jackson…
renovate[bot] Oct 31, 2024
73b0771
chore(deps): update plugin com.gradle.plugin-publish to v1.3.0 (#7)
renovate[bot] Oct 31, 2024
14428b6
fix(deps): update dependency com.fasterxml.jackson.module:jackson-mod…
renovate[bot] Oct 31, 2024
f5111f4
chore(deps): update actions/checkout action to v4 (#10)
renovate[bot] Oct 31, 2024
06e0e3e
chore(deps): update actions/setup-java action to v4
renovate[bot] Oct 31, 2024
2945e68
chore(deps): update gradle/wrapper-validation-action action to v3 (#13)
renovate[bot] Oct 31, 2024
e60f01d
Merge branch 'dev' into feature/main-and-api-validation
rainbowdashlabs Oct 31, 2024
3ce1c73
Feature/main and api validation (#1)
rainbowdashlabs Oct 31, 2024
2480d0c
Update gradle.properties
rainbowdashlabs Oct 31, 2024
13c234a
Merge branch 'dev' into feature/main-and-api-validation
rainbowdashlabs Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>eldoriarpg/.github"
]
}
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@ on: [ push, pull_request ]

jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
java: [ 11, 17 ]
fail-fast: true
steps:
- uses: actions/checkout@v2.3.5
- uses: gradle/wrapper-validation-action@v1
- uses: actions/checkout@v4.2.2
- uses: gradle/wrapper-validation-action@v3
- name: JDK ${{ matrix.java }}
uses: actions/setup-java@v2.3.1
uses: actions/setup-java@v4.5.0
with:
java-version: ${{ matrix.java }}
cache: 'gradle'
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish
on:
push:
branches:
- main

jobs:
publish_gradle:
name: Publish to gradle portal
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.2.2
- uses: gradle/wrapper-validation-action@v3
- name: Setup JDK
uses: actions/setup-java@v4.5.0
with:
java-version: 11
cache: 'gradle'
distribution: 'temurin'
- name: build
env:
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }}
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }}
run: ./gradlew publishPlugin
7 changes: 7 additions & 0 deletions HEADER.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*
* SPDX-License-Identifier: MIT
*
* Copyright (c) 2017 Minecrell <https://github.com/Minecrell>
* Copyright (c) 2024 EldoriaRPG and Contributor <https://github.com/eldoriarpg>
*/

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2017 Minecrell <https://github.com/Minecrell>
Copyright (c) 2024 EldoriaRPG and Contributor <https://github.com/eldoriarpg>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading