Skip to content
This repository was archived by the owner on Jul 24, 2021. It is now read-only.

Commit f6375ab

Browse files
author
BakaAless
committed
Initial commit
0 parents  commit f6375ab

File tree

12 files changed

+960
-0
lines changed

12 files changed

+960
-0
lines changed

.gitignore

Lines changed: 257 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,257 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# Generated files
14+
.idea/**/contentModel.xml
15+
16+
# Sensitive or high-churn files
17+
.idea/**/dataSources/
18+
.idea/**/dataSources.ids
19+
.idea/**/dataSources.local.xml
20+
.idea/**/sqlDataSources.xml
21+
.idea/**/dynamic.xml
22+
.idea/**/uiDesigner.xml
23+
.idea/**/dbnavigator.xml
24+
25+
# Gradle
26+
.idea/**/gradle.xml
27+
.idea/**/libraries
28+
29+
# Gradle and Maven with auto-import
30+
# When using Gradle or Maven with auto-import, you should exclude module files,
31+
# since they will be recreated, and may cause churn. Uncomment if using
32+
# auto-import.
33+
# .idea/artifacts
34+
# .idea/compiler.xml
35+
# .idea/jarRepositories.xml
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### Example user template template
76+
### Example user template
77+
78+
# IntelliJ project files
79+
.idea
80+
*.iml
81+
out
82+
gen
83+
### macOS template
84+
# General
85+
.DS_Store
86+
.AppleDouble
87+
.LSOverride
88+
89+
# Icon must end with two \r
90+
Icon
91+
92+
# Thumbnails
93+
._*
94+
95+
# Files that might appear in the root of a volume
96+
.DocumentRevisions-V100
97+
.fseventsd
98+
.Spotlight-V100
99+
.TemporaryItems
100+
.Trashes
101+
.VolumeIcon.icns
102+
.com.apple.timemachine.donotpresent
103+
104+
# Directories potentially created on remote AFP share
105+
.AppleDB
106+
.AppleDesktop
107+
Network Trash Folder
108+
Temporary Items
109+
.apdisk
110+
111+
### SublimeText template
112+
# Cache files for Sublime Text
113+
*.tmlanguage.cache
114+
*.tmPreferences.cache
115+
*.stTheme.cache
116+
117+
# Workspace files are user-specific
118+
*.sublime-workspace
119+
120+
# Project files should be checked into the repository, unless a significant
121+
# proportion of contributors will probably not be using Sublime Text
122+
# *.sublime-project
123+
124+
# SFTP configuration file
125+
sftp-config.json
126+
sftp-config-alt*.json
127+
128+
# Package control specific files
129+
Package Control.last-run
130+
Package Control.ca-list
131+
Package Control.ca-bundle
132+
Package Control.system-ca-bundle
133+
Package Control.cache/
134+
Package Control.ca-certs/
135+
Package Control.merged-ca-bundle
136+
Package Control.user-ca-bundle
137+
oscrypto-ca-bundle.crt
138+
bh_unicode_properties.cache
139+
140+
# Sublime-github package stores a github token in this file
141+
# https://packagecontrol.io/packages/sublime-github
142+
GitHub.sublime-settings
143+
144+
### Gradle template
145+
.gradle
146+
**/build/
147+
!src/**/build/
148+
149+
# Ignore Gradle GUI config
150+
gradle-app.setting
151+
152+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
153+
!gradle-wrapper.jar
154+
155+
# Cache of project
156+
.gradletasknamecache
157+
158+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
159+
# gradle/wrapper/gradle-wrapper.properties
160+
161+
### VisualStudioCode template
162+
.vscode/*
163+
!.vscode/settings.json
164+
!.vscode/tasks.json
165+
!.vscode/launch.json
166+
!.vscode/extensions.json
167+
*.code-workspace
168+
169+
# Local History for Visual Studio Code
170+
.history/
171+
172+
### Eclipse template
173+
.metadata
174+
bin/
175+
tmp/
176+
*.tmp
177+
*.bak
178+
*.swp
179+
*~.nib
180+
local.properties
181+
.settings/
182+
.loadpath
183+
.recommenders
184+
185+
# External tool builders
186+
.externalToolBuilders/
187+
188+
# Locally stored "Eclipse launch configurations"
189+
*.launch
190+
191+
# PyDev specific (Python IDE for Eclipse)
192+
*.pydevproject
193+
194+
# CDT-specific (C/C++ Development Tooling)
195+
.cproject
196+
197+
# CDT- autotools
198+
.autotools
199+
200+
# Java annotation processor (APT)
201+
.factorypath
202+
203+
# PDT-specific (PHP Development Tools)
204+
.buildpath
205+
206+
# sbteclipse plugin
207+
.target
208+
209+
# Tern plugin
210+
.tern-project
211+
212+
# TeXlipse plugin
213+
.texlipse
214+
215+
# STS (Spring Tool Suite)
216+
.springBeans
217+
218+
# Code Recommenders
219+
.recommenders/
220+
221+
# Annotation Processing
222+
.apt_generated/
223+
.apt_generated_test/
224+
225+
# Scala IDE specific (Scala & Java development for Eclipse)
226+
.cache-main
227+
.scala_dependencies
228+
.worksheet
229+
230+
# Uncomment this line if you wish to ignore the project description file.
231+
# Typically, this file would be tracked if it contains build/dependency configurations:
232+
#.project
233+
234+
### Java template
235+
# Compiled class file
236+
*.class
237+
238+
# Log file
239+
*.log
240+
241+
# BlueJ files
242+
*.ctxt
243+
244+
# Mobile Tools for Java (J2ME)
245+
.mtj.tmp/
246+
247+
# Package Files #
248+
*.jar
249+
*.war
250+
*.nar
251+
*.ear
252+
*.zip
253+
*.tar.gz
254+
*.rar
255+
256+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
257+
hs_err_pid*

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# InventoryAPI
2+
3+
## Présentation
4+
5+
<p>➠ Développeur(s) : BakaAless</p>
6+
<p>➠ État : Fini</p>
7+
8+
9+
## Description
10+
11+
➠ API permettant de faciliter la création d'inventaires Minecraft.
12+
Cette API a été développée par et fait partie du projet [Avatar-Returns](https://avatar-returns.fr).
13+
14+
## Licence
15+
16+
<p xmlns:dct="http://purl.org/dc/terms/" xmlns:cc="http://creativecommons.org/ns#" class="license-text"><a rel="cc:attributionURL" property="dct:title" href="https://github.com/BakaAless/InventoryAPI">InventoryAPI</a> by <a rel="cc:attributionURL dct:creator" property="cc:attributionName" href="https://github.com/BakaAless">BakaAless</a> is licensed under <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0">CC BY-NC-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" /><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" /><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1" /><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" /></a></p>

build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
plugins {
2+
id 'java'
3+
id 'idea'
4+
}
5+
6+
group 'fr.bakaaless'
7+
version '1.0-SNAPSHOT'
8+
9+
def spigotVersion = "1.15"
10+
def subVersion = ".2"
11+
12+
sourceCompatibility = '1.8'
13+
14+
repositories {
15+
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots" } // Spigot
16+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } // Spigot
17+
mavenCentral()
18+
}
19+
20+
dependencies {
21+
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.2'
22+
implementation group: 'org.spigotmc', name: 'spigot-api', version: spigotVersion + subVersion + '-R0.1-SNAPSHOT'
23+
}
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

0 commit comments

Comments
 (0)