Skip to content

Commit

Permalink
Initial release for sanity
Browse files Browse the repository at this point in the history
  • Loading branch information
Foulest committed Dec 5, 2024
1 parent 2f9cf9b commit eaef3b3
Show file tree
Hide file tree
Showing 14 changed files with 737 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Report a bug
about: Create a report to help us improve.
title: ''
labels: 'bug'
assignees: 'Foulest' # TODO: Change this to your username
assignees: 'Foulest'

---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/documentation-improvement.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Documentation improvement
about: Suggest an improvement for the project documentation.
title: ''
labels: 'documentation'
assignees: 'Foulest' # TODO: Change this to your username
assignees: 'Foulest'

---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Feature request
about: Suggest an idea for this project.
title: ''
labels: 'request'
assignees: 'Foulest' # TODO: Change this to your username
assignees: 'Foulest'

---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Ask a question
about: Ask a question about the project.
title: ''
labels: 'question'
assignees: 'Foulest' # TODO: Change this to your username
assignees: 'Foulest'

---

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8 # TODO: Change this to your Java version
java-version: 8

- name: 'Setup Gradle'
uses: gradle/actions/setup-gradle@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8 # TODO: Change this to your Java version
java-version: 8

- name: 'Submit Dependency Graph'
uses: gradle/actions/dependency-submission@v3
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ plugins {
id 'java'
}

group = 'net.foulest' // TODO: Change this to your group
version = '1.0.0' // TODO: Change this to your version
description = 'JavaTemplate' // TODO: Change this to your description
group = 'net.foulest'
version = '1.0.0'
description = 'Swiss'

// Set the project's language level
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8)) // TODO: Change this to your Java version
languageVersion.set(JavaLanguageVersion.of(8))
}
}

Expand Down Expand Up @@ -45,12 +45,12 @@ tasks {

// Set the 'Main-Class' attribute in the JAR manifest
manifest {
attributes 'Main-Class': 'net.foulest.template.Main' // TODO: Change this to your main class
attributes 'Main-Class': 'net.foulest.swiss.Main'
}
}

shadowJar {
mainClassName = 'net.foulest.template.Main' // TODO: Change this to your main class
mainClassName = 'net.foulest.swiss.Main'
archiveFileName.set("${project.name}-${project.version}.jar")
}

Expand Down Expand Up @@ -87,7 +87,7 @@ tasks {
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'net.foulest.template' // TODO: Change this to your group
groupId = 'net.foulest.swiss'
artifactId = project.name
version = project.version

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = 'JavaTemplate' // TODO: Change this to your project name
rootProject.name = 'Swiss'
Loading

0 comments on commit eaef3b3

Please sign in to comment.