Skip to content

Commit 7378d5e

Browse files
committed
Create project V1.0.0
First commit, create project and base code - DataBase / Manager - ActionBar / Manager - Hologram / Manager
1 parent bd8ddf9 commit 7378d5e

33 files changed

+1452
-0
lines changed

.idea/compiler.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

+40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/material_theme_project_new.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+105
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BabyModel.iml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module version="4">
3+
<component name="FacetManager">
4+
<facet type="minecraft" name="Minecraft">
5+
<configuration>
6+
<autoDetectTypes>
7+
<platformType>SPIGOT</platformType>
8+
</autoDetectTypes>
9+
<projectReimportVersion>1</projectReimportVersion>
10+
</configuration>
11+
</facet>
12+
</component>
13+
</module>

dependency-reduced-pom.xml

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>fr.babystaff</groupId>
5+
<artifactId>BabyModel</artifactId>
6+
<name>BabyModel</name>
7+
<version>1.0</version>
8+
<build>
9+
<resources>
10+
<resource>
11+
<directory>src/main/resources</directory>
12+
</resource>
13+
</resources>
14+
<plugins>
15+
<plugin>
16+
<artifactId>maven-compiler-plugin</artifactId>
17+
<version>3.8.1</version>
18+
<configuration>
19+
<source>${java.version}</source>
20+
<target>${java.version}</target>
21+
</configuration>
22+
</plugin>
23+
<plugin>
24+
<artifactId>maven-shade-plugin</artifactId>
25+
<version>3.2.4</version>
26+
<executions>
27+
<execution>
28+
<phase>package</phase>
29+
<goals>
30+
<goal>shade</goal>
31+
</goals>
32+
</execution>
33+
</executions>
34+
</plugin>
35+
<plugin>
36+
<artifactId>maven-resources-plugin</artifactId>
37+
<version>3.3.1</version>
38+
<executions>
39+
<execution>
40+
<goals>
41+
<goal>resources</goal>
42+
</goals>
43+
<configuration>
44+
<nonFilteredFileExtensions>
45+
<nonFilteredFileExtension>jar</nonFilteredFileExtension>
46+
</nonFilteredFileExtensions>
47+
</configuration>
48+
</execution>
49+
</executions>
50+
</plugin>
51+
</plugins>
52+
</build>
53+
<repositories>
54+
<repository>
55+
<id>sonatype</id>
56+
<url>https://oss.sonatype.org/content/groups/public/</url>
57+
</repository>
58+
<repository>
59+
<id>libraries-minecraft-net</id>
60+
<url>https://libraries.minecraft.net/</url>
61+
</repository>
62+
<repository>
63+
<id>dmulloy2-repo</id>
64+
<url>https://repo.dmulloy2.net/repository/public/</url>
65+
</repository>
66+
</repositories>
67+
<dependencies>
68+
<dependency>
69+
<groupId>org.spigotmc</groupId>
70+
<artifactId>spigot</artifactId>
71+
<version>1.8.8-R0.1-SNAPSHOT</version>
72+
<scope>provided</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>org.spigotmc</groupId>
76+
<artifactId>spigot-api</artifactId>
77+
<version>1.8.8-R0.1-SNAPSHOT</version>
78+
<scope>provided</scope>
79+
</dependency>
80+
<dependency>
81+
<groupId>com.comphenix.protocol</groupId>
82+
<artifactId>ProtocolLib</artifactId>
83+
<version>5.1.0</version>
84+
<scope>provided</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>com.mojang</groupId>
88+
<artifactId>authlib</artifactId>
89+
<version>1.5.22</version>
90+
<scope>provided</scope>
91+
</dependency>
92+
</dependencies>
93+
<properties>
94+
<java.version>1.8</java.version>
95+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
96+
</properties>
97+
</project>

0 commit comments

Comments
 (0)