Skip to content
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
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Summary
<!-- Brief description of what this PR does -->

## Changes
<!-- List of specific changes -->

## Rationale
<!-- Why these changes are needed -->

## Verification
<!-- How to verify this works -->
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import net.ltgt.gradle.errorprone.ErrorProneOptions
import net.ltgt.gradle.errorprone.errorprone

plugins {
`maven-publish`
id("java-library")
id("com.gradleup.shadow") version "9.3.1"
id("net.ltgt.errorprone") version "4.4.0"
Expand All @@ -12,6 +13,17 @@ project.group = (findProperty("pluginGroup") as String? ?: "com.example")
project.version = (findProperty("pluginVersion") as String? ?: "1.0.0")
description = findProperty("pluginDescription") as String? ?: "A Hytale plugin template"

publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
groupId = "io.github.legendaryforge"
artifactId = "LegendaryCore"
version = "0.0.0-SNAPSHOT"
}
}
}

repositories {
mavenLocal()
mavenCentral()
Expand Down