Skip to content

Commit 2e8e7df

Browse files
committed
Updated project, final clean up
1 parent 30cc816 commit 2e8e7df

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

.gitignore

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
target/
55
dependency-reduced-pom.xml
66

7+
# Maven wrapper (если используешь wrapper, НЕ игнорируй .mvn/wrapper)
8+
.mvn/timing.properties
9+
.mvn/wrapper/maven-wrapper.jar
10+
711
# ==============================
812
# Compiled class files
913
# ==============================
@@ -25,7 +29,22 @@ replay_pid*
2529
# ==============================
2630
.idea/
2731
*.iml
32+
out/ # IntelliJ output folder sometimes
2833
.vscode/
34+
*.code-workspace # VS Code workspace files
35+
36+
# Eclipse
37+
.project
38+
.classpath
39+
.settings/
40+
41+
# NetBeans
42+
nbproject/
43+
build/
44+
nbbuild/
45+
dist/
46+
nbdist/
47+
.nb-gradle/
2948

3049
# ==============================
3150
# OS files
@@ -37,4 +56,7 @@ Thumbs.db
3756
# Temporary / misc
3857
# ==============================
3958
.mtj.tmp/
40-
*.ctxt
59+
*.ctxt
60+
*.tmp
61+
*.swp
62+
*~

pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@
1010
<name>StatsPlugin</name>
1111

1212
<properties>
13-
<!-- Paper 1.21.x строго требует Java 21 -->
1413
<maven.compiler.release>21</maven.compiler.release>
1514
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1615
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1716

18-
<!-- API-версия Paper -->
1917
<paper.api.version>1.21-R0.1-SNAPSHOT</paper.api.version>
2018
</properties>
2119

@@ -37,7 +35,6 @@
3735

3836
<build>
3937
<plugins>
40-
<!-- Компилятор для Java 21 -->
4138
<plugin>
4239
<groupId>org.apache.maven.plugins</groupId>
4340
<artifactId>maven-compiler-plugin</artifactId>
@@ -47,7 +44,6 @@
4744
</configuration>
4845
</plugin>
4946

50-
<!-- Shade для сборки fat-jar -->
5147
<plugin>
5248
<groupId>org.apache.maven.plugins</groupId>
5349
<artifactId>maven-shade-plugin</artifactId>

0 commit comments

Comments
 (0)