Browse Source

fix missing "@since 1.1"

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@603932 13f79535-47bb-0310-9956-ffa450edef68
tags/archiva-1.0.1
Nicolas De Loof 16 years ago
parent
commit
e25c4643a5

+ 4
- 4
archiva-base/archiva-configuration/src/main/mdo/configuration.mdo View File

@@ -107,7 +107,7 @@
</field>
<field>
<name>legacyArtifactPaths</name>
<version>1.0.0+</version>
<version>1.1.0+</version>
<association>
<type>LegacyArtifactPath</type>
<multiplicity>*</multiplicity>
@@ -443,11 +443,11 @@

<class>
<name>LegacyArtifactPath</name>
<version>1.0.0+</version>
<version>1.1.0+</version>
<fields>
<field>
<name>path</name>
<version>1.0.0+</version>
<version>1.1.0+</version>
<type>String</type>
<required>true</required>
<description>
@@ -456,7 +456,7 @@
</field>
<field>
<name>artifact</name>
<version>1.0.0+</version>
<version>1.1.0+</version>
<type>String</type>
<required>true</required>
<description>

+ 1
- 0
archiva-base/archiva-configuration/src/test/java/org/apache/maven/archiva/configuration/LegacyArtifactPathTest.java View File

@@ -25,6 +25,7 @@ import org.apache.maven.archiva.model.ArtifactReference;
/**
* Test the generated LegacyArtifactPath class from Modello. This is primarily to test the hand coded methods.
* @since 1.1
*/
public class LegacyArtifactPathTest
extends TestCase

+ 1
- 0
archiva-base/archiva-repository-layer/src/main/java/org/apache/maven/archiva/repository/content/ArtifactClassifierMapping.java View File

@@ -29,6 +29,7 @@ import java.util.regex.Pattern;
/**
* ArtifactExtensionMapping
*
* @since 1.1
*/
public class ArtifactClassifierMapping
{

+ 1
- 0
archiva-base/archiva-repository-layer/src/test/java/org/apache/maven/archiva/repository/content/LegacyPathParserTest.java View File

@@ -363,6 +363,7 @@ public class LegacyPathParserTest

/**
* [MRM-594] add some hook in LegacyPathParser to allow exceptions in artifact resolution
* @since 1.1
*/
public void testCustomExceptionsInArtifactResolution()
throws LayoutException

+ 1
- 1
archiva-docs/src/site/apt/adminguide/legacy.apt View File

@@ -18,7 +18,7 @@ Apache Archiva legacy support configuration
repository, but users may require support for private artifact or for
artifacts with classifiers.
Archiva provides a legacy support configuration to the administrator. It
Since version 1.1, archiva provides a legacy support configuration to the administrator. It
is possible to register some custom legacy path and the expected artifact
reference. Archiva will check that the entered artifact reference match
the legacy path, to avoid corrupted datas in repository :

+ 1
- 1
archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/admin/legacy/AddLegacyArtifactPathAction.java View File

@@ -34,7 +34,7 @@ import com.opensymphony.xwork.Preparable;
/**
* Add a LegacyArtifactPath to archiva configuration
*
*
* @since 1.1
* @plexus.component role="com.opensymphony.xwork.Action" role-hint="addLegacyArtifactPathAction"
*/
public class AddLegacyArtifactPathAction

+ 1
- 0
archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/admin/legacy/DeleteLegacyArtifactPathAction.java View File

@@ -32,6 +32,7 @@ import org.codehaus.plexus.xwork.action.PlexusActionSupport;
* Delete a LegacyArtifactPath to archiva configuration
*
*
* @since 1.1
* @plexus.component role="com.opensymphony.xwork.Action" role-hint="deleteLegacyArtifactPathAction"
*/
public class DeleteLegacyArtifactPathAction

+ 1
- 0
archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/action/admin/legacy/LegacyArtifactPathAction.java View File

@@ -41,6 +41,7 @@ import com.opensymphony.xwork.Preparable;
/**
* Shows the LegacyArtifactPath Tab for the administrator.
*
* @since 1.1
* @plexus.component role="com.opensymphony.xwork.Action" role-hint="legacyArtifactPathAction"
*/
public class LegacyArtifactPathAction

Loading…
Cancel
Save