Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed May 22, 2023
1 parent 366860b commit 13b602a
Show file tree
Hide file tree
Showing 192 changed files with 6,115 additions and 9,533 deletions.
35 changes: 18 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>

<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">
<modelVersion>4.0.0</modelVersion>

Expand All @@ -15,11 +14,24 @@

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

<contributors>
<contributor>
<name>Dan Tran</name>
</contributor>
<contributor>
<name>Richard van der Hoff</name>
</contributor>
<contributor>
<name>Tomasz 'Trog' Welman</name>
<email>[email protected]</email>
</contributor>
</contributors>

<scm>
<connection>scm:git:https://github.com/codehaus-plexus/plexus-archiver.git</connection>
<developerConnection>scm:git:https://github.com/codehaus-plexus/plexus-archiver.git</developerConnection>
<url>http://github.com/codehaus-plexus/plexus-archiver/tree/${project.scm.tag}/</url>
<tag>plexus-archiver-4.6.1</tag>
<url>http://github.com/codehaus-plexus/plexus-archiver/tree/${project.scm.tag}/</url>
</scm>
<issueManagement>
<system>jira</system>
Expand All @@ -38,19 +50,6 @@
<project.build.outputTimestamp>2023-05-05T22:34:21Z</project.build.outputTimestamp>
</properties>

<contributors>
<contributor>
<name>Dan Tran</name>
</contributor>
<contributor>
<name>Richard van der Hoff</name>
</contributor>
<contributor>
<name>Tomasz 'Trog' Welman</name>
<email>[email protected]</email>
</contributor>
</contributors>

<dependencies>
<!-- JSR330 -->
<dependency>
Expand Down Expand Up @@ -182,15 +181,17 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
<content>${project.reporting.outputDirectory}</content>
<!-- mono-module doesn't require site:stage -->
</configuration>
<executions>
<execution>
<id>scm-publish</id>
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
<!-- deploy site with maven-scm-publish-plugin -->
<goals>
<goal>publish-scm</goal>
</goals>
<phase>site-deploy</phase>
</execution>
</executions>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
package org.codehaus.plexus.archiver;

public abstract class AbstractArchiveFinalizer
implements ArchiveFinalizer
{
public abstract class AbstractArchiveFinalizer implements ArchiveFinalizer {

protected AbstractArchiveFinalizer()
{
}
protected AbstractArchiveFinalizer() {}

@Override
public void finalizeArchiveCreation( Archiver archiver )
throws ArchiverException
{
}
public void finalizeArchiveCreation(Archiver archiver) throws ArchiverException {}

@Override
public void finalizeArchiveExtraction( UnArchiver unarchiver )
throws ArchiverException
{
}

public void finalizeArchiveExtraction(UnArchiver unarchiver) throws ArchiverException {}
}
Loading

0 comments on commit 13b602a

Please sign in to comment.