|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<!-- |
| 4 | +Licensed to the Apache Software Foundation (ASF) under one |
| 5 | +or more contributor license agreements. See the NOTICE file |
| 6 | +distributed with this work for additional information |
| 7 | +regarding copyright ownership. The ASF licenses this file |
| 8 | +to you under the Apache License, Version 2.0 (the |
| 9 | +"License"); you may not use this file except in compliance |
| 10 | +with the License. You may obtain a copy of the License at |
| 11 | +
|
| 12 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +
|
| 14 | +Unless required by applicable law or agreed to in writing, |
| 15 | +software distributed under the License is distributed on an |
| 16 | +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | +KIND, either express or implied. See the License for the |
| 18 | +specific language governing permissions and limitations |
| 19 | +under the License. |
| 20 | +--> |
| 21 | + |
| 22 | +<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"> |
| 23 | + <modelVersion>4.0.0</modelVersion> |
| 24 | + |
| 25 | + <groupId>org.apache.maven.its.mdeploy-224</groupId> |
| 26 | + <artifactId>parent</artifactId> |
| 27 | + <version>1.0</version> |
| 28 | + <packaging>pom</packaging> |
| 29 | + |
| 30 | + <description> |
| 31 | + Tests deployment at end only in modules. |
| 32 | + </description> |
| 33 | + |
| 34 | + <properties> |
| 35 | + <maven.test.skip>true</maven.test.skip> |
| 36 | + </properties> |
| 37 | + |
| 38 | + <distributionManagement> |
| 39 | + <repository> |
| 40 | + <id>it</id> |
| 41 | + <url>file:///${basedir}/target/repo</url> |
| 42 | + </repository> |
| 43 | + </distributionManagement> |
| 44 | + |
| 45 | + <build> |
| 46 | + <plugins> |
| 47 | + <plugin> |
| 48 | + <groupId>org.apache.maven.plugins</groupId> |
| 49 | + <artifactId>maven-compiler-plugin</artifactId> |
| 50 | + <version>@mavenCompilerPluginVersion@</version> |
| 51 | + </plugin> |
| 52 | + <plugin> |
| 53 | + <groupId>org.apache.maven.plugins</groupId> |
| 54 | + <artifactId>maven-deploy-plugin</artifactId> |
| 55 | + <version>@project.version@</version> |
| 56 | + <configuration> |
| 57 | + <deployAtEnd>false</deployAtEnd> |
| 58 | + </configuration> |
| 59 | + </plugin> |
| 60 | + <plugin> |
| 61 | + <groupId>org.apache.maven.plugins</groupId> |
| 62 | + <artifactId>maven-install-plugin</artifactId> |
| 63 | + <version>@mavenInstallPluginVersion@</version> |
| 64 | + </plugin> |
| 65 | + <plugin> |
| 66 | + <groupId>org.apache.maven.plugins</groupId> |
| 67 | + <artifactId>maven-jar-plugin</artifactId> |
| 68 | + <version>@mavenJarPluginVersion@</version> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-resources-plugin</artifactId> |
| 73 | + <version>@mavenResourcesPluginVersion@</version> |
| 74 | + </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-surefire-plugin</artifactId> |
| 78 | + <version>@mavenSurefirePluginVersion@</version> |
| 79 | + </plugin> |
| 80 | + </plugins> |
| 81 | + </build> |
| 82 | + |
| 83 | + <modules> |
| 84 | + <module>module1</module> |
| 85 | + <module>module2</module> |
| 86 | + </modules> |
| 87 | +</project> |
0 commit comments