Skip to content

Commit ea51020

Browse files
committed
Format the code consistently.
1 parent c10feb3 commit ea51020

12 files changed

+757
-703
lines changed

pom.xml

+173-173
Original file line numberDiff line numberDiff line change
@@ -1,182 +1,182 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>de.lemaik.chunkymap</groupId>
8-
<artifactId>ChunkyMap</artifactId>
9-
<version>2.5.0</version>
7+
<groupId>de.lemaik.chunkymap</groupId>
8+
<artifactId>ChunkyMap</artifactId>
9+
<version>2.5.0</version>
1010

11-
<licenses>
12-
<license>
13-
<name>GPL v3</name>
14-
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
15-
</license>
16-
</licenses>
11+
<licenses>
12+
<license>
13+
<name>GPL v3</name>
14+
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
15+
</license>
16+
</licenses>
1717

18-
<properties>
19-
<jdk.version>1.8</jdk.version>
20-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
22-
</properties>
18+
<properties>
19+
<jdk.version>1.8</jdk.version>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
22+
</properties>
2323

24-
<repositories>
25-
<repository>
26-
<id>sonatype-oss-releases</id>
27-
<url>https://oss.sonatype.org/content/repositories/releases</url>
28-
</repository>
29-
<repository>
30-
<id>spigot-repo</id>
31-
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
32-
</repository>
33-
<repository>
34-
<id>dynmap-repo</id>
35-
<url>http://repo.mikeprimm.com/</url>
36-
</repository>
37-
<repository>
38-
<id>wertarbyte-repo</id>
39-
<url>https://repo.wertarbyte.com</url>
40-
</repository>
41-
<repository>
42-
<id>local-libs</id>
43-
<url>file://${basedir}/lib</url>
44-
</repository>
45-
</repositories>
24+
<repositories>
25+
<repository>
26+
<id>sonatype-oss-releases</id>
27+
<url>https://oss.sonatype.org/content/repositories/releases</url>
28+
</repository>
29+
<repository>
30+
<id>spigot-repo</id>
31+
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
32+
</repository>
33+
<repository>
34+
<id>dynmap-repo</id>
35+
<url>http://repo.mikeprimm.com/</url>
36+
</repository>
37+
<repository>
38+
<id>wertarbyte-repo</id>
39+
<url>https://repo.wertarbyte.com</url>
40+
</repository>
41+
<repository>
42+
<id>local-libs</id>
43+
<url>file://${basedir}/lib</url>
44+
</repository>
45+
</repositories>
4646

47-
<dependencies>
48-
<dependency>
49-
<groupId>org.bukkit</groupId>
50-
<artifactId>bukkit</artifactId>
51-
<version>1.16.1-R0.1-SNAPSHOT</version>
52-
<scope>provided</scope>
53-
</dependency>
54-
<dependency>
55-
<groupId>se.llbit</groupId>
56-
<artifactId>chunky-core</artifactId>
57-
<version>2.3.0-18-g94f81238</version>
58-
</dependency>
59-
<dependency>
60-
<!-- dependency of chunky -->
61-
<groupId>org.apache.commons</groupId>
62-
<artifactId>commons-math3</artifactId>
63-
<version>3.2</version>
64-
</dependency>
65-
<dependency>
66-
<!-- this is an older version, but 3.0-SNAPSHOT can't be installed and this works, too -->
67-
<groupId>us.dynmap</groupId>
68-
<artifactId>DynmapCore</artifactId>
69-
<version>2.3</version>
70-
<scope>provided</scope>
71-
</dependency>
72-
<dependency>
73-
<groupId>com.squareup.okhttp3</groupId>
74-
<artifactId>okhttp</artifactId>
75-
<version>3.4.1</version>
76-
</dependency>
77-
<dependency>
78-
<groupId>com.google.code.gson</groupId>
79-
<artifactId>gson</artifactId>
80-
<version>2.7</version>
81-
</dependency>
82-
<dependency>
83-
<groupId>net.time4tea</groupId>
84-
<artifactId>oidnjni</artifactId>
85-
<version>0.1.04</version>
86-
</dependency>
87-
<dependency>
88-
<!-- dependency of oidnjni -->
89-
<groupId>org.jetbrains.kotlin</groupId>
90-
<artifactId>kotlin-stdlib</artifactId>
91-
<version>1.3.72</version>
92-
</dependency>
93-
<dependency>
94-
<groupId>de.lemaik</groupId>
95-
<artifactId>chunky-denoiser</artifactId>
96-
<version>0.1.3-SNAPSHOT</version>
97-
</dependency>
98-
<dependency>
99-
<groupId>junit</groupId>
100-
<artifactId>junit</artifactId>
101-
<version>4.11</version>
102-
<scope>test</scope>
103-
</dependency>
104-
</dependencies>
47+
<dependencies>
48+
<dependency>
49+
<groupId>org.bukkit</groupId>
50+
<artifactId>bukkit</artifactId>
51+
<version>1.16.1-R0.1-SNAPSHOT</version>
52+
<scope>provided</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>se.llbit</groupId>
56+
<artifactId>chunky-core</artifactId>
57+
<version>2.3.0-18-g94f81238</version>
58+
</dependency>
59+
<dependency>
60+
<!-- dependency of chunky -->
61+
<groupId>org.apache.commons</groupId>
62+
<artifactId>commons-math3</artifactId>
63+
<version>3.2</version>
64+
</dependency>
65+
<dependency>
66+
<!-- this is an older version, but 3.0-SNAPSHOT can't be installed and this works, too -->
67+
<groupId>us.dynmap</groupId>
68+
<artifactId>DynmapCore</artifactId>
69+
<version>2.3</version>
70+
<scope>provided</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>com.squareup.okhttp3</groupId>
74+
<artifactId>okhttp</artifactId>
75+
<version>3.4.1</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>com.google.code.gson</groupId>
79+
<artifactId>gson</artifactId>
80+
<version>2.7</version>
81+
</dependency>
82+
<dependency>
83+
<groupId>net.time4tea</groupId>
84+
<artifactId>oidnjni</artifactId>
85+
<version>0.1.04</version>
86+
</dependency>
87+
<dependency>
88+
<!-- dependency of oidnjni -->
89+
<groupId>org.jetbrains.kotlin</groupId>
90+
<artifactId>kotlin-stdlib</artifactId>
91+
<version>1.3.72</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>de.lemaik</groupId>
95+
<artifactId>chunky-denoiser</artifactId>
96+
<version>0.1.3-SNAPSHOT</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>junit</groupId>
100+
<artifactId>junit</artifactId>
101+
<version>4.11</version>
102+
<scope>test</scope>
103+
</dependency>
104+
</dependencies>
105105

106-
<build>
107-
<plugins>
108-
<plugin>
109-
<groupId>org.apache.maven.plugins</groupId>
110-
<artifactId>maven-compiler-plugin</artifactId>
111-
<version>3.5.1</version>
112-
<configuration>
113-
<source>1.8</source>
114-
<target>1.8</target>
115-
</configuration>
116-
</plugin>
117-
<plugin>
118-
<groupId>org.apache.maven.plugins</groupId>
119-
<artifactId>maven-assembly-plugin</artifactId>
120-
<version>2.6</version>
121-
<executions>
122-
<execution>
123-
<phase>package</phase>
124-
<goals>
125-
<goal>single</goal>
126-
</goals>
127-
</execution>
128-
</executions>
129-
<configuration>
130-
<descriptorRefs>
131-
<descriptorRef>jar-with-dependencies</descriptorRef>
132-
</descriptorRefs>
133-
</configuration>
134-
</plugin>
135-
<plugin>
136-
<groupId>org.apache.maven.plugins</groupId>
137-
<artifactId>maven-install-plugin</artifactId>
138-
<version>2.5.2</version>
139-
<executions>
140-
<execution>
141-
<id>install-chunky</id>
142-
<phase>clean</phase>
143-
<configuration>
144-
<file>${basedir}/vendor/chunky/build/chunky-core-2.3.0-18-g94f81238.jar</file>
145-
<repositoryLayout>default</repositoryLayout>
146-
<groupId>se.llbit</groupId>
147-
<artifactId>chunky-core</artifactId>
148-
<version>2.3.0-18-g94f81238</version>
149-
<packaging>jar</packaging>
150-
<generatePom>true</generatePom>
151-
</configuration>
152-
<goals>
153-
<goal>install-file</goal>
154-
</goals>
155-
</execution>
156-
<execution>
157-
<id>install-chunky-denoiser</id>
158-
<phase>clean</phase>
159-
<configuration>
160-
<file>${basedir}/vendor/chunky-denoiser/build/libs/chunky-denoiser-chunky2.jar</file>
161-
<repositoryLayout>default</repositoryLayout>
162-
<groupId>de.lemaik</groupId>
163-
<artifactId>chunky-denoiser</artifactId>
164-
<version>0.1.3-SNAPSHOT</version>
165-
<packaging>jar</packaging>
166-
<generatePom>true</generatePom>
167-
</configuration>
168-
<goals>
169-
<goal>install-file</goal>
170-
</goals>
171-
</execution>
172-
</executions>
173-
</plugin>
174-
</plugins>
175-
<resources>
176-
<resource>
177-
<directory>src/main/resources</directory>
178-
<filtering>true</filtering>
179-
</resource>
180-
</resources>
181-
</build>
106+
<build>
107+
<plugins>
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-compiler-plugin</artifactId>
111+
<version>3.5.1</version>
112+
<configuration>
113+
<source>1.8</source>
114+
<target>1.8</target>
115+
</configuration>
116+
</plugin>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-assembly-plugin</artifactId>
120+
<version>2.6</version>
121+
<executions>
122+
<execution>
123+
<phase>package</phase>
124+
<goals>
125+
<goal>single</goal>
126+
</goals>
127+
</execution>
128+
</executions>
129+
<configuration>
130+
<descriptorRefs>
131+
<descriptorRef>jar-with-dependencies</descriptorRef>
132+
</descriptorRefs>
133+
</configuration>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-install-plugin</artifactId>
138+
<version>2.5.2</version>
139+
<executions>
140+
<execution>
141+
<id>install-chunky</id>
142+
<phase>clean</phase>
143+
<configuration>
144+
<file>${basedir}/vendor/chunky/build/chunky-core-2.3.0-18-g94f81238.jar</file>
145+
<repositoryLayout>default</repositoryLayout>
146+
<groupId>se.llbit</groupId>
147+
<artifactId>chunky-core</artifactId>
148+
<version>2.3.0-18-g94f81238</version>
149+
<packaging>jar</packaging>
150+
<generatePom>true</generatePom>
151+
</configuration>
152+
<goals>
153+
<goal>install-file</goal>
154+
</goals>
155+
</execution>
156+
<execution>
157+
<id>install-chunky-denoiser</id>
158+
<phase>clean</phase>
159+
<configuration>
160+
<file>${basedir}/vendor/chunky-denoiser/build/libs/chunky-denoiser-chunky2.jar</file>
161+
<repositoryLayout>default</repositoryLayout>
162+
<groupId>de.lemaik</groupId>
163+
<artifactId>chunky-denoiser</artifactId>
164+
<version>0.1.3-SNAPSHOT</version>
165+
<packaging>jar</packaging>
166+
<generatePom>true</generatePom>
167+
</configuration>
168+
<goals>
169+
<goal>install-file</goal>
170+
</goals>
171+
</execution>
172+
</executions>
173+
</plugin>
174+
</plugins>
175+
<resources>
176+
<resource>
177+
<directory>src/main/resources</directory>
178+
<filtering>true</filtering>
179+
</resource>
180+
</resources>
181+
</build>
182182
</project>

0 commit comments

Comments
 (0)