Skip to content

Commit 2c0644d

Browse files
committed
Project Uploaded
1 parent 1991af1 commit 2c0644d

File tree

3 files changed

+74
-6
lines changed

3 files changed

+74
-6
lines changed

MatrixColorAPI.iml

Lines changed: 13 additions & 0 deletions
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

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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>net.matrixcreations</groupId>
5+
<artifactId>MatrixColorAPI</artifactId>
6+
<name>MatrixColorAPI</name>
7+
<version>1.0.0</version>
8+
<build>
9+
<defaultGoal>clean package</defaultGoal>
10+
<resources>
11+
<resource>
12+
<filtering>true</filtering>
13+
<directory>src/main/resources</directory>
14+
</resource>
15+
</resources>
16+
<plugins>
17+
<plugin>
18+
<artifactId>maven-compiler-plugin</artifactId>
19+
<version>3.13.0</version>
20+
<configuration>
21+
<source>${java.version}</source>
22+
<target>${java.version}</target>
23+
</configuration>
24+
</plugin>
25+
<plugin>
26+
<artifactId>maven-shade-plugin</artifactId>
27+
<version>3.5.3</version>
28+
<executions>
29+
<execution>
30+
<phase>package</phase>
31+
<goals>
32+
<goal>shade</goal>
33+
</goals>
34+
</execution>
35+
</executions>
36+
</plugin>
37+
</plugins>
38+
</build>
39+
<repositories>
40+
<repository>
41+
<id>spigotmc-repo</id>
42+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
43+
</repository>
44+
<repository>
45+
<id>sonatype</id>
46+
<url>https://oss.sonatype.org/content/groups/public/</url>
47+
</repository>
48+
</repositories>
49+
<dependencies>
50+
<dependency>
51+
<groupId>org.projectlombok</groupId>
52+
<artifactId>lombok</artifactId>
53+
<version>1.18.26</version>
54+
<scope>provided</scope>
55+
</dependency>
56+
</dependencies>
57+
<properties>
58+
<java.version>16</java.version>
59+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
60+
</properties>
61+
</project>

src/main/resources/plugin.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)