Skip to content

Commit f6e235f

Browse files
committed
Initial commit
0 parents  commit f6e235f

25 files changed

+1627
-0
lines changed

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
!**/src/main/**/build/
5+
!**/src/test/**/build/
6+
7+
### IntelliJ IDEA ###
8+
.idea/modules.xml
9+
.idea/jarRepositories.xml
10+
.idea/compiler.xml
11+
.idea/libraries/
12+
*.iws
13+
*.iml
14+
*.ipr
15+
out/
16+
!**/src/main/**/out/
17+
!**/src/test/**/out/
18+
19+
### Eclipse ###
20+
.apt_generated
21+
.classpath
22+
.factorypath
23+
.project
24+
.settings
25+
.springBeans
26+
.sts4-cache
27+
bin/
28+
!**/src/main/**/bin/
29+
!**/src/test/**/bin/
30+
31+
### NetBeans ###
32+
/nbproject/private/
33+
/nbbuild/
34+
/dist/
35+
/nbdist/
36+
/.nb-gradle/
37+
38+
### VS Code ###
39+
.vscode/
40+
41+
### Mac OS ###
42+
.DS_Store

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/uiDesigner.xml

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
plugins {
2+
id 'java'
3+
id 'com.github.johnrengelman.shadow' version '8.1.1'
4+
}
5+
6+
group = 'com.artillexstudios.axsmithing'
7+
version = '1.0'
8+
9+
repositories {
10+
mavenCentral()
11+
12+
maven {
13+
url = uri('https://repo.alessiodp.com/releases/')
14+
}
15+
16+
maven {
17+
url = uri('https://hub.spigotmc.org/nexus/content/repositories/snapshots/')
18+
}
19+
20+
maven {
21+
url = uri('https://repo.viaversion.com')
22+
}
23+
}
24+
25+
dependencies {
26+
implementation 'net.byteflux:libby-bukkit:1.2.0'
27+
implementation 'dev.dejvokep:boosted-yaml:1.3'
28+
implementation 'net.kyori:adventure-text-minimessage:4.14.0'
29+
implementation 'net.kyori:adventure-text-serializer-legacy:4.14.0'
30+
implementation 'net.kyori:adventure-platform-bukkit:4.3.0'
31+
implementation 'net.kyori:adventure-api:4.14.0'
32+
implementation 'org.bstats:bstats-bukkit:3.0.2'
33+
compileOnly 'com.google.code.gson:gson:2.10.1'
34+
compileOnly 'org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT'
35+
compileOnly 'com.viaversion:viaversion-api:4.7.0'
36+
}
37+
38+
compileJava {
39+
dependsOn(clean)
40+
options.encoding = "UTF-8"
41+
}
42+
43+
shadowJar {
44+
relocate("net.byteflux.libby", "com.artillexstudios.axsmithing.libs.libby")
45+
relocate("net.kyori", "com.artillexstudios.axsmithing.libs.kyori")
46+
relocate("org.bstats", "com.artillexstudios.axsmithing.libs.bstats")
47+
minimize()
48+
}
49+
50+
build {
51+
dependsOn(shadowJar)
52+
}

gradle/wrapper/gradle-wrapper.jar

59.3 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sat Aug 19 14:47:24 CEST 2023
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)