Skip to content

Commit 13b602a

Browse files
committed
Reformat
1 parent 366860b commit 13b602a

File tree

192 files changed

+6115
-9533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+6115
-9533
lines changed

pom.xml

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

@@ -15,11 +14,24 @@
1514

1615
<url>https://codehaus-plexus.github.io/plexus-archiver/</url>
1716

17+
<contributors>
18+
<contributor>
19+
<name>Dan Tran</name>
20+
</contributor>
21+
<contributor>
22+
<name>Richard van der Hoff</name>
23+
</contributor>
24+
<contributor>
25+
<name>Tomasz 'Trog' Welman</name>
26+
<email>[email protected]</email>
27+
</contributor>
28+
</contributors>
29+
1830
<scm>
1931
<connection>scm:git:https://github.com/codehaus-plexus/plexus-archiver.git</connection>
2032
<developerConnection>scm:git:https://github.com/codehaus-plexus/plexus-archiver.git</developerConnection>
21-
<url>http://github.com/codehaus-plexus/plexus-archiver/tree/${project.scm.tag}/</url>
2233
<tag>plexus-archiver-4.6.1</tag>
34+
<url>http://github.com/codehaus-plexus/plexus-archiver/tree/${project.scm.tag}/</url>
2335
</scm>
2436
<issueManagement>
2537
<system>jira</system>
@@ -38,19 +50,6 @@
3850
<project.build.outputTimestamp>2023-05-05T22:34:21Z</project.build.outputTimestamp>
3951
</properties>
4052

41-
<contributors>
42-
<contributor>
43-
<name>Dan Tran</name>
44-
</contributor>
45-
<contributor>
46-
<name>Richard van der Hoff</name>
47-
</contributor>
48-
<contributor>
49-
<name>Tomasz 'Trog' Welman</name>
50-
<email>[email protected]</email>
51-
</contributor>
52-
</contributors>
53-
5453
<dependencies>
5554
<!-- JSR330 -->
5655
<dependency>
@@ -182,15 +181,17 @@
182181
<groupId>org.apache.maven.plugins</groupId>
183182
<artifactId>maven-scm-publish-plugin</artifactId>
184183
<configuration>
185-
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
184+
<content>${project.reporting.outputDirectory}</content>
185+
<!-- mono-module doesn't require site:stage -->
186186
</configuration>
187187
<executions>
188188
<execution>
189189
<id>scm-publish</id>
190-
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
190+
<!-- deploy site with maven-scm-publish-plugin -->
191191
<goals>
192192
<goal>publish-scm</goal>
193193
</goals>
194+
<phase>site-deploy</phase>
194195
</execution>
195196
</executions>
196197
</plugin>
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
11
package org.codehaus.plexus.archiver;
22

3-
public abstract class AbstractArchiveFinalizer
4-
implements ArchiveFinalizer
5-
{
3+
public abstract class AbstractArchiveFinalizer implements ArchiveFinalizer {
64

7-
protected AbstractArchiveFinalizer()
8-
{
9-
}
5+
protected AbstractArchiveFinalizer() {}
106

117
@Override
12-
public void finalizeArchiveCreation( Archiver archiver )
13-
throws ArchiverException
14-
{
15-
}
8+
public void finalizeArchiveCreation(Archiver archiver) throws ArchiverException {}
169

1710
@Override
18-
public void finalizeArchiveExtraction( UnArchiver unarchiver )
19-
throws ArchiverException
20-
{
21-
}
22-
11+
public void finalizeArchiveExtraction(UnArchiver unarchiver) throws ArchiverException {}
2312
}

0 commit comments

Comments
 (0)