mirror of https://github.com/apache/maven.git
Resolving (Cannot Reproduce): MNG-731
o Added it0061 to verify deployment using legacy layout for the distribution repository. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@240154 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a98961eeed
commit
4e6c969942
|
@ -171,6 +171,10 @@ it0060: Test aggregation of list configuration items when using
|
|||
'combine.children=append' attribute. Specifically, merge the list of
|
||||
excludes for the testCompile mojo.
|
||||
|
||||
it0061: Verify that deployment of artifacts to a legacy-layout repository
|
||||
results in a groupId directory of 'the.full.group.id' instead of
|
||||
'the/full/group/id'.
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
- generated sources
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
it0061
|
||||
it0060
|
||||
it0059
|
||||
it0058
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
target/test-repo/org.apache.maven.it/jars/maven-core-it0061-1.0.jar
|
||||
target/test-repo/org.apache.maven.it/poms/maven-core-it0061-1.0.pom
|
|
@ -0,0 +1 @@
|
|||
deploy
|
|
@ -0,0 +1,25 @@
|
|||
<model>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-core-it0061</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>test</id>
|
||||
<url>file:target/test-repo</url>
|
||||
<layout>legacy</layout>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<type>jar</type>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</model>
|
|
@ -0,0 +1,16 @@
|
|||
package org.apache.maven.it0001;
|
||||
|
||||
public class Person
|
||||
{
|
||||
private String name;
|
||||
|
||||
public void setName( String name )
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
name = jason
|
Loading…
Reference in New Issue