Skip to content
This repository was archived by the owner on Aug 1, 2020. It is now read-only.

Commit

Permalink
Added thingys that do thingys
Browse files Browse the repository at this point in the history
  • Loading branch information
BomBardyGamer committed Jun 30, 2020
1 parent 5b3d44e commit a4d11fa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 13 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ This is the first ever HCCCE and doesn't really have a defined topic, so make it
* No malicious code, duh.
* You must comment your code with your name so we know who authored everything.
* Comments don't count towards the characters limit, but comments mustn't have code in them.

**We recommend that you build before you commit, to ensure your changes don't break anything!**
11 changes: 0 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.apache.tools.ant.filters.ReplaceTokens

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
}
Expand Down Expand Up @@ -27,9 +25,6 @@ repositories {
}

dependencies {
// BomBardyGamer - start
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jvm:1.3.72'
// BomBardyGamer - end
compileOnly 'com.destroystokyo.paper:paper-api:1.16.1-R0.1-SNAPSHOT'
//katsumag - start
compileOnly 'me.clip:placeholderapi:2.10.6'
Expand All @@ -41,9 +36,3 @@ dependencies {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}//BM end

processResources {
from(sourceSets.main.resources.srcDirs) {
filter ReplaceTokens, tokens: [version: version]
}
}
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Tue Jun 30 21:19:32 BST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 2 additions & 0 deletions src/main/kotlin/at/helpch/hccce/HCCCE.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package at.helpch.hccce
import org.bukkit.plugin.java.JavaPlugin

class HCCCE : JavaPlugin() {

override fun onEnable() {
firstTime()
// TODO: Register command, would have done but I would have gone over character limit with CommandExecutor implementation
}
}
3 changes: 3 additions & 0 deletions src/main/kotlin/at/helpch/hccce/commands/PingCommand.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package at.helpch.hccce.commands

class PingCommand // TODO: Please someone make this work! I would have but I ran out of chars lol

0 comments on commit a4d11fa

Please sign in to comment.