Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ blank_issues_enabled: false
contact_links:
- name: 🗣️ Discord Chat
url: https://discord.com/invite/rduPF3yk62
about: Ask questions and discuss with others on my Discord server.
about: Support Discord, please ask questions and seek support here.
6 changes: 0 additions & 6 deletions .github/pull_request_template.md

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/publish-to-maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish project to Maven repository

on:
push:
branches: [ master ]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Git Repository
uses: actions/[email protected]

- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 17

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Publish with Gradle
run: ./gradlew build publish
env:
MAVEN_NAME: ${{ secrets.MAVEN_NAME }}
MAVEN_SECRET: ${{ secrets.MAVEN_SECRET }}
15 changes: 15 additions & 0 deletions HEADER.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Copyright (c) 2018-2023, Thomas Meaney
Copyright (c) contributors

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
27 changes: 0 additions & 27 deletions LICENSE

This file was deleted.

858 changes: 858 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

37 changes: 36 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,41 @@ not to forget: let each player decide which settings whey think are best for the

![Graph](https://bstats.org/signatures/bukkit/BuildSystem.svg)

## Developer API

**Maven:**

```xml

<repository>
<id>eintosti-releases</id>
<url>https://repo.eintosti.de/releases</url>
</repository>
```

```xml

<dependency>
<groupId>de.eintosti</groupId>
<artifactId>buildsystem-api</artifactId>
<version>version</version>
</dependency>
```

**Or alternatively, with Gradle:**

```kotlin
repositories {
maven {
url = uri("https://repo.eintosti.de/releases")
}
}

dependencies {
compileOnly("de.eintosti:buildsystem-api:version")
}
```

## Contributing

### To compile...
Expand Down Expand Up @@ -146,4 +181,4 @@ that come with them.

## License

This project is licensed under the [BSD 4-Clause License](LICENSE).
This project is licensed under the [GNU General Public License v3.0](LICENSE.txt).
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/CommonConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fun Project.applyCommonConfiguration() {
}
maven {
name = "PaperMC"
url = uri("https://papermc.io/repo/repository/maven-public/")
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven {
name = "OSS Sonatype Snapshots"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_12_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_12_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_13_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_13_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_14_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_17_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.v1_20_R1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.customblocks;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.customblocks;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
/*
* Copyright (c) 2023, Thomas Meaney
* All rights reserved.
* Copyright (c) 2018-2023, Thomas Meaney
* Copyright (c) contributors
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.eintosti.buildsystem.version.gamerules;

Expand Down
Loading