mirror of https://github.com/apache/maven.git
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:
parent
02d05c618f
commit
44e7bf618f
|
@ -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>
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
name=${name}
|
||||
project=${pom.name}
|
||||
value=${pkey}
|
||||
|
|
Loading…
Reference in New Issue