Skip to content

Commit b378689

Browse files
committed
Initial commit
0 parents  commit b378689

File tree

8 files changed

+422
-0
lines changed

8 files changed

+422
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
.idea/
3+
.gradle/

build.gradle

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
plugins {
2+
id 'java'
3+
id 'net.kyori.blossom' version '1.1.0'
4+
}
5+
6+
String packagePath = 'dev.frankheijden.insights.addons.lands'
7+
group = packagePath
8+
version = '1.0.0'
9+
description = 'LandsAddon'
10+
sourceCompatibility = '1.8'
11+
12+
repositories {
13+
mavenCentral()
14+
maven { url 'https://papermc.io/repo/repository/maven-public/' }
15+
maven { url 'https://jitpack.io' }
16+
}
17+
18+
dependencies {
19+
compileOnly 'com.github.InsightsPlugin:Insights:feature~addons-SNAPSHOT'
20+
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
21+
compileOnly 'com.github.angeschossen:LandsAPI:5.1.13'
22+
}
23+
24+
blossom {
25+
replaceTokenIn 'src/main/java/dev/frankheijden/insights/addons/lands/LandsAddon.java'
26+
replaceToken '{version}', version
27+
}

gradle/wrapper/gradle-wrapper.jar

57.8 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

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

gradlew.bat

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

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'LandsAddon'
2+

0 commit comments

Comments
 (0)