Skip to content

Commit 82edfd4

Browse files
committed
Bile
1 parent 8672b9c commit 82edfd4

File tree

5 files changed

+1028
-0
lines changed

5 files changed

+1028
-0
lines changed

.gitignore

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
.settings
5+
.project
6+
.classpath
7+
8+
# Eclipse & Maven
9+
target/
10+
.metadata
11+
bin/
12+
tmp/
13+
*.tmp
14+
*.bak
15+
*.swp
16+
*~.nib
17+
local.properties
18+
.settings/
19+
.loadpath
20+
.recommenders
21+
22+
# Eclipse Core
23+
.project
24+
25+
# External tool builders
26+
.externalToolBuilders/
27+
28+
# Locally stored "Eclipse launch configurations"
29+
*.launch
30+
31+
# PyDev specific (Python IDE for Eclipse)
32+
*.pydevproject
33+
34+
# CDT-specific (C/C++ Development Tooling)
35+
.cproject
36+
37+
# JDT-specific (Eclipse Java Development Tools)
38+
.classpath
39+
40+
# Java annotation processor (APT)
41+
.factorypath
42+
43+
# PDT-specific (PHP Development Tools)
44+
.buildpath
45+
46+
# sbteclipse plugin
47+
.target
48+
49+
# Tern plugin
50+
.tern-project
51+
52+
# TeXlipse plugin
53+
.texlipse
54+
55+
# STS (Spring Tool Suite)
56+
.springBeans
57+
58+
# Code Recommenders
59+
.recommenders/
60+
61+
# Folder config file
62+
Desktop.ini
63+
64+
# Recycle Bin used on file shares
65+
$RECYCLE.BIN/
66+
67+
# Windows Installer files
68+
*.cab
69+
*.msi
70+
*.msm
71+
*.msp
72+
73+
# Windows shortcuts
74+
*.lnk
75+
76+
# =========================
77+
# Operating System Files
78+
# =========================
79+
80+
# OSX
81+
# =========================
82+
83+
.DS_Store
84+
.AppleDouble
85+
.LSOverride
86+
87+
# Thumbnails
88+
._*
89+
90+
# Files that might appear in the root of a volume
91+
.DocumentRevisions-V100
92+
.fseventsd
93+
.Spotlight-V100
94+
.TemporaryItems
95+
.Trashes
96+
.VolumeIcon.icns
97+
98+
# Directories potentially created on remote AFP share
99+
.AppleDB
100+
.AppleDesktop
101+
Network Trash Folder
102+
Temporary Items
103+
.apdisk
104+
/bin/
105+
*.classpath
106+
*.classpath

pom.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.volmit</groupId>
5+
<artifactId>BileTools</artifactId>
6+
<version>1.0</version>
7+
<name>BileTools</name>
8+
<properties>
9+
<maven.compiler.source>1.8</maven.compiler.source>
10+
<maven.compiler.target>1.8</maven.compiler.target>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
</properties>
13+
<build>
14+
<resources>
15+
<resource>
16+
<directory>src/main/resources</directory>
17+
<filtering>true</filtering>
18+
<includes>
19+
<include>**/*.yml</include>
20+
<include>**/*.json</include>
21+
<include>**/*.txt</include>
22+
</includes>
23+
</resource>
24+
</resources>
25+
<plugins>
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-jar-plugin</artifactId>
29+
<version>2.3.1</version>
30+
<configuration>
31+
<finalName>${project.name}</finalName>
32+
</configuration>
33+
</plugin>
34+
</plugins>
35+
</build>
36+
<repositories>
37+
<repository>
38+
<id>spigot-repo</id>
39+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
40+
</repository>
41+
</repositories>
42+
<dependencies>
43+
<dependency>
44+
<groupId>org.spigotmc</groupId>
45+
<artifactId>spigot-api</artifactId>
46+
<version>1.12.2-R0.1-SNAPSHOT</version>
47+
<scope>provided</scope>
48+
</dependency>
49+
</dependencies>
50+
</project>

0 commit comments

Comments
 (0)