|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | + ~ or more contributor license agreements. See the NOTICE file |
| 5 | + ~ distributed with this work for additional information |
| 6 | + ~ regarding copyright ownership. The ASF licenses this file |
| 7 | + ~ to you under the Apache License, Version 2.0 (the |
| 8 | + ~ "License"); you may not use this file except in compliance |
| 9 | + ~ with the License. You may obtain a copy of the License at |
| 10 | + ~ |
| 11 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | + ~ |
| 13 | + ~ Unless required by applicable law or agreed to in writing, |
| 14 | + ~ software distributed under the License is distributed on an |
| 15 | + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | + ~ KIND, either express or implied. See the License for the |
| 17 | + ~ specific language governing permissions and limitations |
| 18 | + ~ under the License. |
| 19 | + --> |
| 20 | + |
| 21 | +<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/xsd/maven-4.0.0.xsd"> |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <groupId>org.apache.maven.surefire</groupId> |
| 26 | + <artifactId>surefire</artifactId> |
| 27 | + <version>3.0.0-M8-SNAPSHOT</version> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <artifactId>surefire-providers</artifactId> |
| 31 | + <packaging>pom</packaging> |
| 32 | + |
| 33 | + <name>SureFire Providers</name> |
| 34 | + <description>SureFire Providers Aggregator POM</description> |
| 35 | + |
| 36 | + <modules> |
| 37 | + <module>common-junit3</module> |
| 38 | + <module>common-java5</module> |
| 39 | + <module>common-junit4</module> |
| 40 | + <module>common-junit48</module> |
| 41 | + <module>surefire-junit3</module> |
| 42 | + <module>surefire-junit4</module> |
| 43 | + <module>surefire-junit47</module> |
| 44 | + <module>surefire-junit-platform</module> |
| 45 | + <module>surefire-testng-utils</module> |
| 46 | + <module>surefire-testng</module> |
| 47 | + </modules> |
| 48 | + |
| 49 | + <dependencies> |
| 50 | + <dependency> |
| 51 | + <groupId>org.apache.maven.surefire</groupId> |
| 52 | + <artifactId>surefire-api</artifactId> |
| 53 | + <version>${project.version}</version> |
| 54 | + </dependency> |
| 55 | + </dependencies> |
| 56 | + |
| 57 | + <build> |
| 58 | + <plugins> |
| 59 | + <plugin> |
| 60 | + <artifactId>maven-surefire-plugin</artifactId> |
| 61 | + <dependencies> |
| 62 | + <dependency> |
| 63 | + <groupId>org.apache.maven.surefire</groupId> |
| 64 | + <artifactId>surefire-shadefire</artifactId> |
| 65 | + <version>3.0.0-M7</version> <!-- ${shadedVersion}, but resolved due to https://issues.apache.org/jira/browse/MRELEASE-799 --> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + </plugin> |
| 69 | + </plugins> |
| 70 | + </build> |
| 71 | +</project> |
| 72 | + |
0 commit comments