Skip to content

Commit

Permalink
create repo
Browse files Browse the repository at this point in the history
  • Loading branch information
natsurainko committed Jul 9, 2022
1 parent c0dd466 commit 3d078f7
Show file tree
Hide file tree
Showing 43 changed files with 1,044 additions and 0 deletions.
Binary file added .gradle/7.3.3/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/7.3.3/checksums/md5-checksums.bin
Binary file not shown.
Binary file added .gradle/7.3.3/checksums/sha1-checksums.bin
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file added .gradle/7.3.3/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/7.3.3/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/7.3.3/fileHashes/fileHashes.lock
Binary file not shown.
Binary file added .gradle/7.3.3/fileHashes/resourceHashesCache.bin
Binary file not shown.
Empty file added .gradle/7.3.3/gc.properties
Empty file.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Fri Jul 08 21:23:07 CST 2022
gradle.version=7.3.3
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file added .gradle/file-system.probe
Binary file not shown.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions .idea/libraries-with-intellij-classes.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/libraries/mysql_connector_java_8_0_29.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/modules/whitelist.main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
apply plugin: 'java'

group = 'natsurainko.plugins'
version = '1.0-SNAPSHOT'

repositories {
mavenCentral()
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
maven {
name = 'papermc-repo'
url = 'https://papermc.io/repo/repository/maven-public/'
}
}

dependencies {
compileOnly 'io.github.waterfallmc:waterfall-api:1.18-R0.1-SNAPSHOT'
implementation fileTree(dir: 'lib',includes: ['*.jar'])
}

def targetJavaVersion = 12
java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
}

tasks.withType(JavaCompile).configureEach {
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
options.release = targetJavaVersion
}
}

processResources {
def props = [version: version]
inputs.properties props
expand props
filteringCharset 'UTF-8'
filesMatching('bungee.yml') {
expand props
}
}
Empty file added gradle.properties
Empty file.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 3d078f7

Please sign in to comment.