Skip to content

Commit 4b30231

Browse files
committed
Initial commit
0 parents  commit 4b30231

12 files changed

Lines changed: 414 additions & 0 deletions

File tree

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
2+
3+
*.iml
4+
5+
## Directory-based project format:
6+
.idea/
7+
8+
## File-based project format:
9+
*.ipr
10+
*.iws
11+
12+
## Plugin-specific files:
13+
14+
# IntelliJ
15+
/out/
16+
17+
# mpeltonen/sbt-idea plugin
18+
.idea_modules/
19+
20+
# JIRA plugin
21+
atlassian-ide-plugin.xml
22+
23+
# Crashlytics plugin (for Android Studio and IntelliJ)
24+
com_crashlytics_export_strings.xml
25+
crashlytics.properties
26+
crashlytics-build.properties
27+
28+
*.class
29+
30+
# Mobile Tools for Java (J2ME)
31+
.mtj.tmp/
32+
33+
# Package Files #
34+
*.war
35+
*.ear
36+
*.zip
37+
38+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
39+
hs_err_pid*
40+
41+
/classes/
42+
/target/
43+
/build/
44+
.gradle/
45+
.sandbox/
46+
47+
/gen/
48+
49+
50+
.DS_Store

build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
plugins {
3+
java
4+
}
5+
6+
group = "com.demonwav.mcdev"
7+
8+
java {
9+
sourceCompatibility = JavaVersion.VERSION_1_8
10+
targetCompatibility = JavaVersion.VERSION_1_8
11+
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
version = 1.0

gradle/wrapper/gradle-wrapper.jar

54.3 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+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip

gradlew

Lines changed: 172 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: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

license.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2020 minecraft-dev
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# MinecraftDev Annotations
2+
3+
Annotations for the Minecraft Development plugin for IntelliJ.

settings.gradle.kts

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

0 commit comments

Comments
 (0)