Skip to content

Commit df257e4

Browse files
committed
fix: Reformat with spotless
1 parent 3a2791a commit df257e4

6 files changed

Lines changed: 484 additions & 494 deletions

File tree

pom.xml

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,80 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
6-
<modelVersion>4.0.0</modelVersion>
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
77

8-
<groupId>org.commoncrawl</groupId>
9-
<artifactId>whirlwind-java</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
11-
<name>Whirlwind Tour Java Tools</name>
8+
<groupId>org.commoncrawl</groupId>
9+
<artifactId>whirlwind-java</artifactId>
10+
<version>0.1.0-SNAPSHOT</version>
11+
<name>Whirlwind Tour Java Tools</name>
1212

13-
<properties>
14-
<maven.compiler.release>11</maven.compiler.release>
15-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
</properties>
13+
<properties>
14+
<maven.compiler.release>11</maven.compiler.release>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
</properties>
1717

18-
<dependencies>
19-
<dependency>
20-
<groupId>org.apache.commons</groupId>
21-
<artifactId>commons-compress</artifactId>
22-
<version>1.28.0</version>
23-
</dependency>
24-
<dependency>
25-
<groupId>org.netpreserve</groupId>
26-
<artifactId>jwarc</artifactId>
27-
<version>0.33.0</version>
28-
</dependency>
29-
</dependencies>
18+
<dependencies>
19+
<dependency>
20+
<groupId>org.apache.commons</groupId>
21+
<artifactId>commons-compress</artifactId>
22+
<version>1.28.0</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.netpreserve</groupId>
26+
<artifactId>jwarc</artifactId>
27+
<version>0.33.0</version>
28+
</dependency>
29+
</dependencies>
3030

31-
<build>
32-
<plugins>
33-
<plugin>
34-
<groupId>org.apache.maven.plugins</groupId>
35-
<artifactId>maven-compiler-plugin</artifactId>
36-
<version>3.11.0</version>
37-
<configuration>
38-
<release>${maven.compiler.release}</release>
39-
</configuration>
40-
</plugin>
41-
<plugin>
42-
<groupId>org.apache.maven.plugins</groupId>
43-
<artifactId>maven-jar-plugin</artifactId>
44-
<version>3.3.0</version>
45-
<configuration>
46-
<archive>
47-
<manifest>
48-
<mainClass>org.commoncrawl.whirlwind.ReadWARC</mainClass>
49-
</manifest>
50-
</archive>
51-
</configuration>
52-
</plugin>
53-
<plugin>
54-
<groupId>com.diffplug.spotless</groupId>
55-
<artifactId>spotless-maven-plugin</artifactId>
56-
<version>2.46.1</version>
57-
<configuration>
58-
<pom>
59-
<!-- These are the defaults, you can override if you want -->
60-
<includes>
61-
<include>pom.xml</include>
62-
</includes>
63-
<sortPom>
64-
<indentAttribute>all</indentAttribute>
65-
<keepBlankLines>true</keepBlankLines>
66-
<expandEmptyElements>false</expandEmptyElements>
67-
<nrOfIndentSpace>-1</nrOfIndentSpace>
68-
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder>
69-
</sortPom>
70-
</pom>
71-
<java>
72-
<eclipse>
73-
<file>${project.basedir}/eclipse-formatter.xml</file>
74-
</eclipse>
75-
</java>
76-
</configuration>
77-
</plugin>
78-
</plugins>
79-
</build>
31+
<build>
32+
<plugins>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-compiler-plugin</artifactId>
36+
<version>3.11.0</version>
37+
<configuration>
38+
<release>${maven.compiler.release}</release>
39+
</configuration>
40+
</plugin>
41+
<plugin>
42+
<groupId>org.apache.maven.plugins</groupId>
43+
<artifactId>maven-jar-plugin</artifactId>
44+
<version>3.3.0</version>
45+
<configuration>
46+
<archive>
47+
<manifest>
48+
<mainClass>org.commoncrawl.whirlwind.ReadWARC</mainClass>
49+
</manifest>
50+
</archive>
51+
</configuration>
52+
</plugin>
53+
<plugin>
54+
<groupId>com.diffplug.spotless</groupId>
55+
<artifactId>spotless-maven-plugin</artifactId>
56+
<version>2.46.1</version>
57+
<configuration>
58+
<pom>
59+
<!-- These are the defaults, you can override if you want -->
60+
<includes>
61+
<include>pom.xml</include>
62+
</includes>
63+
<sortPom>
64+
<indentAttribute>all</indentAttribute>
65+
<keepBlankLines>true</keepBlankLines>
66+
<expandEmptyElements>false</expandEmptyElements>
67+
<nrOfIndentSpace>-1</nrOfIndentSpace>
68+
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder>
69+
</sortPom>
70+
</pom>
71+
<java>
72+
<eclipse>
73+
<file>${project.basedir}/eclipse-formatter.xml</file>
74+
</eclipse>
75+
</java>
76+
</configuration>
77+
</plugin>
78+
</plugins>
79+
</build>
8080
</project>

0 commit comments

Comments
 (0)