mirror of https://github.com/apache/maven.git
testcase for MNG-1324 - "System" dependencies path non correctly added to eclipse buildpath
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@329656 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4c89459ed5
commit
331460ad33
|
@ -0,0 +1,5 @@
|
|||
<classpath>
|
||||
<classpathentry kind="output" path="target/classes"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="lib" path="${basedir}/sysdep.jar"/>
|
||||
</classpath>
|
|
@ -0,0 +1,19 @@
|
|||
<?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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>jar</packaging>
|
||||
<groupId>eclipse</groupId>
|
||||
<artifactId>maven-eclipse-plugin-test-project-8</artifactId>
|
||||
<version>99.0</version>
|
||||
<name>Maven</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>sysdep</groupId>
|
||||
<artifactId>sysdep</artifactId>
|
||||
<version>98.0</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${basedir}/sysdep.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
|
@ -0,0 +1,14 @@
|
|||
<projectDescription>
|
||||
<name>maven-eclipse-plugin-test-project-8</name>
|
||||
<comment/>
|
||||
<projects/>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments/>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,7 @@
|
|||
<project-modules id="moduleCoreId">
|
||||
<wb-module deploy-name="maven-eclipse-plugin-test-project-8">
|
||||
<module-type module-type-id="jst.utility">
|
||||
<property name="java-output-path" value="/target/classes"/>
|
||||
</module-type>
|
||||
</wb-module>
|
||||
</project-modules>
|
Loading…
Reference in New Issue