Skip to content

Commit f94b7f7

Browse files
authored
GH-2 Release 2.0.0 update.
1 parent bbc802b commit f94b7f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1428
-1140
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: 'Bug Report'
22
description: 'Select if you want to report commons issue.'
3-
title: "[BUG] "
43
labels: [ 'bug' ]
54
body:
65
- type: 'dropdown'
@@ -10,8 +9,9 @@ body:
109
description: 'With what element do you have problems?'
1110
multiple: false
1211
options:
13-
- 'Inject'
14-
- 'Reflection'
12+
- 'inject'
13+
- 'reflection'
14+
- 'sql'
1515
validations:
1616
required: true
1717
- type: 'input'

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Commons Build'
2+
on:
3+
push:
4+
pull_request:
5+
jobs:
6+
build:
7+
runs-on: 'ubuntu-latest'
8+
steps:
9+
- name: 'Checkout'
10+
uses: 'actions/checkout@v4'
11+
- name: 'Install Java Development Kit (17)'
12+
uses: 'actions/setup-java@v4'
13+
with:
14+
java-version: '17'
15+
distribution: 'temurin'
16+
- name: 'Assign Permissions'
17+
run: 'chmod +x ./gradlew'
18+
- name: 'Build (Gradle)'
19+
run: './gradlew build'

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.iml
22
**/*.iml
33
.idea/**
4-
**/target/**
4+
**/build/
5+
**/.gradle/

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,4 +658,4 @@ specific requirements.
658658
You should also get your employer (if you work as a programmer) or school,
659659
if any, to sign a "copyright disclaimer" for the program, if necessary.
660660
For more information on this, and how to apply and follow the GNU AGPL, see
661-
<https://www.gnu.org/licenses/>.
661+
<https://www.gnu.org/licenses/>.

README.md

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,6 @@
11
# Java Commons
22
This repository contains libraries that is used by MrStudios Industries in their open source and closed source projects.
33

4-
## Usage
5-
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.
6-
7-
Maven:
8-
```xml
9-
<repository>
10-
<id>mrstudios-repository</id>
11-
<url>https://repo.mrstudios.pl/public/</url>
12-
</repository>
13-
```
14-
15-
Gradle: (Groovy)
16-
```groovy
17-
maven {
18-
url "https://repo.mrstudios.pl/public/"
19-
}
20-
```
21-
22-
Gradle (Kotlin)
23-
```kotlin
24-
maven {
25-
url = uri("https://repo.mrstudios.pl/public/")
26-
}
27-
```
4+
## Documentation
5+
If you want to use these libraries in your project, you can find the documentation at [docs.mrstudios.pl](https://docs.mrstudios.pl/).
286

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
project.group = "pl.mrstudios.commons"
2+
project.version = "2.0.0"

bukkit/README.md

Lines changed: 0 additions & 101 deletions
This file was deleted.

bukkit/pom.xml

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)