Skip to content

Release 2.0.0 update. #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: 'Bug Report'
description: 'Select if you want to report commons issue.'
title: "[BUG] "
labels: [ 'bug' ]
body:
- type: 'dropdown'
Expand All @@ -10,8 +9,9 @@ body:
description: 'With what element do you have problems?'
multiple: false
options:
- 'Inject'
- 'Reflection'
- 'inject'
- 'reflection'
- 'sql'
validations:
required: true
- type: 'input'
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Commons Build'
on:
push:
pull_request:
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v4'
- name: 'Install Java Development Kit (17)'
uses: 'actions/setup-java@v4'
with:
java-version: '17'
distribution: 'temurin'
- name: 'Assign Permissions'
run: 'chmod +x ./gradlew'
- name: 'Build (Gradle)'
run: './gradlew build'
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.iml
**/*.iml
.idea/**
**/target/**
**/build/
**/.gradle/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -658,4 +658,4 @@ specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.
<https://www.gnu.org/licenses/>.
26 changes: 2 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,6 @@
# Java Commons
This repository contains libraries that is used by MrStudios Industries in their open source and closed source projects.

## Usage
To use our libraries, you need to add our repository to your project, when you do that, you can add our libraries to your project.

Maven:
```xml
<repository>
<id>mrstudios-repository</id>
<url>https://repo.mrstudios.pl/public/</url>
</repository>
```

Gradle: (Groovy)
```groovy
maven {
url "https://repo.mrstudios.pl/public/"
}
```

Gradle (Kotlin)
```kotlin
maven {
url = uri("https://repo.mrstudios.pl/public/")
}
```
## Documentation
If you want to use these libraries in your project, you can find the documentation at [docs.mrstudios.pl](https://docs.mrstudios.pl/).

2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
project.group = "pl.mrstudios.commons"
project.version = "2.0.0"
101 changes: 0 additions & 101 deletions bukkit/README.md

This file was deleted.

97 changes: 0 additions & 97 deletions bukkit/pom.xml

This file was deleted.

Loading