Skip to content

Commit fbc3fe0

Browse files
committed
Mechanical reformat (only) of pom.xml
1 parent 47cf47a commit fbc3fe0

1 file changed

Lines changed: 76 additions & 75 deletions

File tree

pom.xml

Lines changed: 76 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,85 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
45

5-
<groupId>com.github.multiformats</groupId>
6-
<artifactId>java-multibase</artifactId>
7-
<version>v1.2.0</version>
8-
<packaging>jar</packaging>
6+
<groupId>com.github.multiformats</groupId>
7+
<artifactId>java-multibase</artifactId>
8+
<version>v1.2.0</version>
9+
<packaging>jar</packaging>
910

10-
<name>multibase</name>
11-
<url>https://github.com/multiformats/java-multibase</url>
11+
<name>multibase</name>
12+
<url>https://github.com/multiformats/java-multibase</url>
1213

13-
<issueManagement>
14-
<url>https://github.com/multiformats/java-multibase/issues</url>
15-
<system>GitHub Issues</system>
16-
</issueManagement>
14+
<issueManagement>
15+
<url>https://github.com/multiformats/java-multibase/issues</url>
16+
<system>GitHub Issues</system>
17+
</issueManagement>
1718

18-
<scm>
19-
<url>https://github.com/multiformats/java-multibase</url>
20-
<connection>scm:git:git://github.com/multiformats/java-multibase.git</connection>
21-
<developerConnection>scm:git:git@github.com:multiformats/java-multibase.git</developerConnection>
22-
</scm>
19+
<scm>
20+
<url>https://github.com/multiformats/java-multibase</url>
21+
<connection>scm:git:git://github.com/multiformats/java-multibase.git</connection>
22+
<developerConnection>scm:git:git@github.com:multiformats/java-multibase.git</developerConnection>
23+
</scm>
2324

24-
<licenses>
25-
<license>
26-
<name>MIT License</name>
27-
<url>https://github.com/multiformats/java-multiaddr/blob/master/LICENSE</url>
28-
<distribution>repo</distribution>
29-
</license>
30-
</licenses>
25+
<licenses>
26+
<license>
27+
<name>MIT License</name>
28+
<url>https://github.com/multiformats/java-multiaddr/blob/master/LICENSE</url>
29+
<distribution>repo</distribution>
30+
</license>
31+
</licenses>
3132

32-
<properties>
33-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
35-
<version.junit>5.11.0</version.junit>
36-
<version.hamcrest>3.0</version.hamcrest>
37-
</properties>
33+
<properties>
34+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36+
<version.junit>5.11.0</version.junit>
37+
<version.hamcrest>3.0</version.hamcrest>
38+
</properties>
3839

39-
<dependencies>
40-
<dependency>
41-
<groupId>org.junit.jupiter</groupId>
42-
<artifactId>junit-jupiter</artifactId>
43-
<version>${version.junit}</version>
44-
<scope>test</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.hamcrest</groupId>
48-
<artifactId>hamcrest</artifactId>
49-
<version>${version.hamcrest}</version>
50-
<scope>test</scope>
51-
</dependency>
52-
</dependencies>
40+
<dependencies>
41+
<dependency>
42+
<groupId>org.junit.jupiter</groupId>
43+
<artifactId>junit-jupiter</artifactId>
44+
<version>${version.junit}</version>
45+
<scope>test</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.hamcrest</groupId>
49+
<artifactId>hamcrest</artifactId>
50+
<version>${version.hamcrest}</version>
51+
<scope>test</scope>
52+
</dependency>
53+
</dependencies>
5354

54-
<build>
55-
<plugins>
56-
<plugin>
57-
<groupId>org.apache.maven.plugins</groupId>
58-
<artifactId>maven-compiler-plugin</artifactId>
59-
<version>3.1</version>
60-
<configuration>
61-
<source>11</source>
62-
<target>11</target>
63-
</configuration>
64-
</plugin>
65-
<plugin>
66-
<groupId>org.apache.maven.plugins</groupId>
67-
<artifactId>maven-surefire-plugin</artifactId>
68-
<version>3.3.1</version>
69-
</plugin>
70-
<plugin>
71-
<groupId>org.apache.maven.plugins</groupId>
72-
<artifactId>maven-jar-plugin</artifactId>
73-
<version>3.0.2</version>
74-
<configuration>
75-
<archive>
76-
<manifest>
77-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
78-
</manifest>
79-
</archive>
80-
</configuration>
81-
</plugin>
82-
</plugins>
83-
</build>
55+
<build>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-compiler-plugin</artifactId>
60+
<version>3.1</version>
61+
<configuration>
62+
<source>11</source>
63+
<target>11</target>
64+
</configuration>
65+
</plugin>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-surefire-plugin</artifactId>
69+
<version>3.3.1</version>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-jar-plugin</artifactId>
74+
<version>3.0.2</version>
75+
<configuration>
76+
<archive>
77+
<manifest>
78+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
79+
</manifest>
80+
</archive>
81+
</configuration>
82+
</plugin>
83+
</plugins>
84+
</build>
8485
</project>

0 commit comments

Comments
 (0)