Skip to content

Commit e77b4d3

Browse files
committed
Ensure UTF-8 compiling
1 parent 76fbe7f commit e77b4d3

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

.github/building/pom.xml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<groupId>plugily.projects</groupId>
2626
<artifactId>minigamesbox</artifactId>
27-
<version>1.3.17-SNAPSHOT4</version>
27+
<version>1.4.0-SNAPSHOT0</version>
2828
<packaging>pom</packaging>
2929

3030
<modules>
@@ -101,21 +101,32 @@
101101
<plugin>
102102
<groupId>org.apache.maven.plugins</groupId>
103103
<artifactId>maven-compiler-plugin</artifactId>
104-
<version>3.10.1</version>
104+
<version>3.14.0</version>
105105
<configuration>
106106
<source>${java.version}</source>
107107
<target>${java.version}</target>
108+
<encoding>UTF-8</encoding>
108109
</configuration>
109110
</plugin>
110111
<plugin>
111112
<groupId>org.apache.maven.plugins</groupId>
112113
<artifactId>maven-site-plugin</artifactId>
113-
<version>3.12.0</version>
114+
<version>3.21.0</version>
115+
</plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-deploy-plugin</artifactId>
119+
<version>3.1.4</version>
120+
</plugin>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-project-info-reports-plugin</artifactId>
124+
<version>3.9.0</version>
114125
</plugin>
115126
<plugin>
116127
<groupId>org.jacoco</groupId>
117128
<artifactId>jacoco-maven-plugin</artifactId>
118-
<version>0.8.8</version>
129+
<version>0.8.12</version>
119130
<configuration>
120131
<append>true</append>
121132
</configuration>
@@ -153,8 +164,12 @@
153164

154165
<distributionManagement>
155166
<repository>
156-
<id>plugily-projects</id>
167+
<id>Release</id>
157168
<url>https://maven.plugily.xyz/releases</url>
158169
</repository>
170+
<snapshotRepository>
171+
<id>Snapshot</id>
172+
<url>https://maven.plugily.xyz/snapshots</url>
173+
</snapshotRepository>
159174
</distributionManagement>
160175
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
<configuration>
106106
<source>${java.version}</source>
107107
<target>${java.version}</target>
108+
<encoding>UTF-8</encoding>
108109
</configuration>
109110
</plugin>
110111
<plugin>

0 commit comments

Comments
 (0)