-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
366860b
commit 13b602a
Showing
192 changed files
with
6,115 additions
and
9,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
||
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> | ||
|
19 changes: 4 additions & 15 deletions
19
src/main/java/org/codehaus/plexus/archiver/AbstractArchiveFinalizer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 {} | ||
} |
Oops, something went wrong.