Skip to content

Commit

Permalink
Building & Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
svdgoor committed Dec 9, 2021
1 parent b91eabc commit b837638
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ apply plugin: 'maven-publish'
group 'com.github.cocoTheOwner'
version 'v0.1'

java {
withJavadocJar()
withSourcesJar()
}

repositories {
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
Expand All @@ -20,11 +25,9 @@ repositories {

dependencies {
implementation 'org.jetbrains:annotations:22.0.0'
implementation 'org.projectlombok:lombok:1.18.22'
implementation 'org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'net.dv8tion:JDA:4.4.0_350'
implementation 'com.google.guava:guava:31.0.1-jre'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
Expand All @@ -36,7 +39,7 @@ test {

publishing {
publications {
maven(MavenPublication) {
mavenJava (MavenPublication) {
groupId = 'com.github.cocoTheOwner'
artifactId = 'StrInput'
version = 'v0.1'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/nl/codevs/strinput/system/StrCenter.java
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ public static void register(
}

/**
* Exception for when no context handlers exist.
* Exception thrown when no context handlers could be found.
*
* @author Sjoerd van de Goor
* @since v0.1
Expand Down

0 comments on commit b837638

Please sign in to comment.