o updating little test project

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@327040 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-10-20 23:38:23 +00:00
parent 02d05c618f
commit 44e7bf618f
2 changed files with 20 additions and 15 deletions

View File

@ -1,5 +1,5 @@
<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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
@ -10,6 +10,11 @@
<organization>
<name>MyCompany Inc</name>
</organization>
<properties>
<pkey>pvalue</pkey>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
@ -22,7 +27,9 @@
<filters>
<filter>src/main/filters/filters.properties</filter>
</filters>
<!--
<outputDirectory>${pom.build.directory}</outputDirectory>
-->
<resources>
<resource>
<directory>src/main/resources</directory>
@ -46,21 +53,18 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals><goal>test-jar</goal></goals>
</execution>
</executions>
</plugin>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,2 +1,3 @@
name=${name}
project=${pom.name}
value=${pkey}