Skip to content

Commit 41b2c64

Browse files
committed
Vampires 2024 Initial
1 parent 7e324f2 commit 41b2c64

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1872
-1616
lines changed

.gitignore

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
# Compiled class file
2-
*.class
3-
4-
# Log file
5-
*.log
6-
7-
# Intellij
8-
*.iml
9-
.idea/
10-
target/
1+
.idea
2+
.gradle
3+
build/

LICENSE

-674
This file was deleted.

README.md

-2
This file was deleted.

build.gradle

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group = 'com.liphium'
6+
version = '1.0-SNAPSHOT'
7+
8+
repositories {
9+
mavenCentral()
10+
maven {
11+
name = "papermc-repo"
12+
url = "https://repo.papermc.io/repository/maven-public/"
13+
}
14+
maven {
15+
name = "sonatype"
16+
url = "https://oss.sonatype.org/content/groups/public/"
17+
}
18+
maven {
19+
url = "https://repo.onarandombox.com/content/groups/public/"
20+
}
21+
}
22+
23+
dependencies {
24+
compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
25+
compileOnly 'com.onarandombox.multiversecore:Multiverse-Core:4.3.1'
26+
}
27+
28+
def targetJavaVersion = 21
29+
java {
30+
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
31+
sourceCompatibility = javaVersion
32+
targetCompatibility = javaVersion
33+
if (JavaVersion.current() < javaVersion) {
34+
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
35+
}
36+
}
37+
38+
tasks.withType(JavaCompile).configureEach {
39+
options.encoding = 'UTF-8'
40+
41+
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
42+
options.release.set(targetJavaVersion)
43+
}
44+
}
45+
46+
processResources {
47+
def props = [version: version]
48+
inputs.properties props
49+
filteringCharset 'UTF-8'
50+
filesMatching('plugin.yml') {
51+
expand props
52+
}
53+
}

gradle.properties

Whitespace-only changes.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip

pom.xml

-40
This file was deleted.

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'Vampires'

src/com/fajurion/vampires/Vampires.java

-11
This file was deleted.

src/main/java/com/fajurion/vampires/Vampires.java

-74
This file was deleted.

src/main/java/com/fajurion/vampires/command/SetCommand.java

-32
This file was deleted.

src/main/java/com/fajurion/vampires/command/TimerCommand.java

-58
This file was deleted.

0 commit comments

Comments
 (0)