1 |
d2a8c3fd
|
Marc NICOLAS
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<!--
|
3 |
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
4 |
|
|
contributor license agreements. See the NOTICE file distributed with
|
5 |
|
|
this work for additional information regarding copyright ownership.
|
6 |
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
7 |
|
|
(the "License"); you may not use this file except in compliance with
|
8 |
|
|
the License. You may obtain a copy of the License at
|
9 |
|
|
|
10 |
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
11 |
|
|
|
12 |
|
|
Unless required by applicable law or agreed to in writing, software
|
13 |
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
14 |
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15 |
|
|
See the License for the specific language governing permissions and
|
16 |
|
|
limitations under the License.
|
17 |
|
|
-->
|
18 |
|
|
<!--
|
19 |
|
|
This POM has been created manually by the Ant Development Team.
|
20 |
|
|
Please contact us if you are not satisfied with the data contained in this POM.
|
21 |
|
|
URL : http://ant.apache.org
|
22 |
|
|
-->
|
23 |
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
24 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
25 |
|
|
<parent>
|
26 |
|
|
<groupId>org.apache.ant</groupId>
|
27 |
|
|
<artifactId>ant-parent</artifactId>
|
28 |
|
|
<relativePath>../pom.xml</relativePath>
|
29 |
|
|
<version>1.8.1</version>
|
30 |
|
|
</parent>
|
31 |
|
|
<modelVersion>4.0.0</modelVersion>
|
32 |
|
|
<groupId>org.apache.ant</groupId>
|
33 |
|
|
<artifactId>ant-junit</artifactId>
|
34 |
|
|
<version>1.8.1</version>
|
35 |
|
|
<description>contains the junit and junirreport tasks</description>
|
36 |
|
|
<dependencies>
|
37 |
|
|
<dependency>
|
38 |
|
|
<groupId>org.apache.ant</groupId>
|
39 |
|
|
<artifactId>ant</artifactId>
|
40 |
|
|
<version>1.8.1</version>
|
41 |
|
|
<scope>compile</scope>
|
42 |
|
|
</dependency>
|
43 |
|
|
<dependency>
|
44 |
|
|
<groupId>junit</groupId>
|
45 |
|
|
<artifactId>junit</artifactId>
|
46 |
|
|
<version>3.8.2</version>
|
47 |
|
|
<scope>compile</scope>
|
48 |
|
|
</dependency>
|
49 |
|
|
</dependencies>
|
50 |
|
|
<build>
|
51 |
|
|
<plugins>
|
52 |
|
|
<plugin>
|
53 |
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
54 |
|
|
<executions>
|
55 |
|
|
<execution>
|
56 |
|
|
<id>create-timestamp-file</id>
|
57 |
|
|
<phase>generate-resources</phase>
|
58 |
|
|
<goals>
|
59 |
|
|
<goal>run</goal>
|
60 |
|
|
</goals>
|
61 |
|
|
<configuration>
|
62 |
|
|
<tasks>
|
63 |
|
|
<mkdir dir="${project.build.outputDirectory}"/>
|
64 |
|
|
<copy todir="${project.build.outputDirectory}/org/apache/tools/ant/taskdefs/optional/junit/xsl">
|
65 |
|
|
<fileset dir="${project.build.sourceDirectory}/../etc">
|
66 |
|
|
<include name="junit-frames.xsl"/>
|
67 |
|
|
<include name="junit-noframes.xsl"/>
|
68 |
|
|
</fileset>
|
69 |
|
|
</copy>
|
70 |
|
|
</tasks>
|
71 |
|
|
</configuration>
|
72 |
|
|
</execution>
|
73 |
|
|
|
74 |
|
|
</executions>
|
75 |
|
|
</plugin>
|
76 |
|
|
<plugin>
|
77 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
78 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
79 |
|
|
<configuration>
|
80 |
|
|
<source>1.4</source>
|
81 |
|
|
<target>1.4</target>
|
82 |
|
|
<includes>
|
83 |
|
|
<include>org/apache/tools/ant/taskdefs/optional/junit/*</include>
|
84 |
|
|
</includes>
|
85 |
|
|
</configuration>
|
86 |
|
|
</plugin>
|
87 |
|
|
</plugins>
|
88 |
|
|
<sourceDirectory>../../../../src/main</sourceDirectory>
|
89 |
|
|
<testSourceDirectory>../../../../src/testcases</testSourceDirectory>
|
90 |
|
|
<outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
|
91 |
|
|
<testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
|
92 |
|
|
<directory>../../../../target/${project.artifactId}</directory>
|
93 |
|
|
</build>
|
94 |
|
|
</project> |