Skip to content

Commit ba52642

Browse files
author
Enc0urager
committed
дура тупая
1 parent fd751f2 commit ba52642

4 files changed

Lines changed: 420 additions & 1 deletion

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
wrapperVersion=3.3.4
22
distributionType=only-script
3-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip

core/core.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>PAPER</platformType>
8+
</autoDetectTypes>
9+
<projectReimportVersion>1</projectReimportVersion>
10+
</configuration>
11+
</facet>
12+
</component>
13+
</module>

core/dependency-reduced-pom.xml

Lines changed: 186 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
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>dev.enco</groupId>
5+
<artifactId>GreatCombat</artifactId>
6+
<name>core</name>
7+
<version>2.0</version>
8+
<build>
9+
<resources>
10+
<resource>
11+
<filtering>true</filtering>
12+
<directory>src/main/resources</directory>
13+
</resource>
14+
</resources>
15+
<plugins>
16+
<plugin>
17+
<artifactId>maven-compiler-plugin</artifactId>
18+
<version>3.8.1</version>
19+
<configuration>
20+
<source>${java.version}</source>
21+
<target>${java.version}</target>
22+
</configuration>
23+
</plugin>
24+
<plugin>
25+
<artifactId>maven-shade-plugin</artifactId>
26+
<version>3.5.1</version>
27+
<executions>
28+
<execution>
29+
<phase>package</phase>
30+
<goals>
31+
<goal>shade</goal>
32+
</goals>
33+
</execution>
34+
</executions>
35+
<configuration>
36+
<relocations>
37+
<relocation>
38+
<pattern>org.bstats</pattern>
39+
<shadedPattern>dev.enco.greatcombat.core.utils.metrics</shadedPattern>
40+
</relocation>
41+
<relocation>
42+
<pattern>fr.mrmicky.fastboard</pattern>
43+
<shadedPattern>dev.enco.greatcombat.core.scoreboard.fastboard</shadedPattern>
44+
</relocation>
45+
</relocations>
46+
<filters>
47+
<filter>
48+
<artifact>org.bstats:**</artifact>
49+
<excludes>
50+
<exclude>META-INF/*.MF</exclude>
51+
</excludes>
52+
</filter>
53+
</filters>
54+
<minimizeJar>true</minimizeJar>
55+
</configuration>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
<repositories>
60+
<repository>
61+
<id>papermc-repo</id>
62+
<url>https://repo.papermc.io/repository/maven-public/</url>
63+
</repository>
64+
<repository>
65+
<id>sonatype</id>
66+
<url>https://oss.sonatype.org/content/groups/public/</url>
67+
</repository>
68+
<repository>
69+
<id>jitpack.io</id>
70+
<url>https://jitpack.io</url>
71+
</repository>
72+
<repository>
73+
<id>essentials-releases</id>
74+
<url>https://repo.essentialsx.net/releases/</url>
75+
</repository>
76+
<repository>
77+
<id>placeholderapi</id>
78+
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
79+
</repository>
80+
<repository>
81+
<id>glaremasters repo</id>
82+
<url>https://repo.glaremasters.me/repository/towny/</url>
83+
</repository>
84+
<repository>
85+
<id>codemc-repo</id>
86+
<url>https://repo.codemc.org/repository/maven-public/</url>
87+
</repository>
88+
</repositories>
89+
<dependencies>
90+
<dependency>
91+
<groupId>io.papermc.paper</groupId>
92+
<artifactId>paper-api</artifactId>
93+
<version>1.21-R0.1-SNAPSHOT</version>
94+
<scope>provided</scope>
95+
</dependency>
96+
<dependency>
97+
<groupId>net.kyori</groupId>
98+
<artifactId>adventure-api</artifactId>
99+
<version>4.22.0</version>
100+
<scope>provided</scope>
101+
</dependency>
102+
<dependency>
103+
<groupId>com.github.NEZNAMY</groupId>
104+
<artifactId>TAB-API</artifactId>
105+
<version>5.0.0</version>
106+
<scope>provided</scope>
107+
</dependency>
108+
<dependency>
109+
<groupId>com.google.inject</groupId>
110+
<artifactId>guice</artifactId>
111+
<version>5.1.0</version>
112+
<scope>provided</scope>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.projectlombok</groupId>
116+
<artifactId>lombok</artifactId>
117+
<version>1.18.36</version>
118+
<scope>provided</scope>
119+
</dependency>
120+
<dependency>
121+
<groupId>com.github.ben-manes.caffeine</groupId>
122+
<artifactId>caffeine</artifactId>
123+
<version>3.2.2</version>
124+
<scope>provided</scope>
125+
</dependency>
126+
<dependency>
127+
<groupId>net.essentialsx</groupId>
128+
<artifactId>EssentialsX</artifactId>
129+
<version>2.20.1</version>
130+
<scope>provided</scope>
131+
</dependency>
132+
<dependency>
133+
<groupId>me.clip</groupId>
134+
<artifactId>placeholderapi</artifactId>
135+
<version>2.11.6</version>
136+
<scope>provided</scope>
137+
</dependency>
138+
<dependency>
139+
<groupId>com.github.Zrips</groupId>
140+
<artifactId>CMI-API</artifactId>
141+
<version>9.7.14.3</version>
142+
<scope>provided</scope>
143+
</dependency>
144+
<dependency>
145+
<groupId>net.kyori</groupId>
146+
<artifactId>adventure-text-minimessage</artifactId>
147+
<version>4.17.0</version>
148+
<scope>provided</scope>
149+
</dependency>
150+
<dependency>
151+
<groupId>com.palmergames.bukkit.towny</groupId>
152+
<artifactId>towny</artifactId>
153+
<version>0.101.2.0</version>
154+
<scope>provided</scope>
155+
</dependency>
156+
<dependency>
157+
<groupId>it.unimi.dsi</groupId>
158+
<artifactId>fastutil</artifactId>
159+
<version>8.5.17</version>
160+
<scope>provided</scope>
161+
</dependency>
162+
<dependency>
163+
<groupId>com.github.ShieldCommunity</groupId>
164+
<artifactId>SternalBoard</artifactId>
165+
<version>2.2.0-PRE</version>
166+
<scope>provided</scope>
167+
</dependency>
168+
<dependency>
169+
<groupId>com.github.angeschossen</groupId>
170+
<artifactId>LandsAPI</artifactId>
171+
<version>7.23.1</version>
172+
<scope>provided</scope>
173+
</dependency>
174+
<dependency>
175+
<groupId>ru.boomearo</groupId>
176+
<artifactId>LangHelper</artifactId>
177+
<version>1.5.18</version>
178+
<scope>system</scope>
179+
<systemPath>${project.basedir}/libs/LangHelper-1.5.18.jar</systemPath>
180+
</dependency>
181+
</dependencies>
182+
<properties>
183+
<java.version>16</java.version>
184+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
185+
</properties>
186+
</project>

0 commit comments

Comments
 (0)