aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/maven/apache-maven-3.3.3/maven-embedder/src/test/projects/readProject-withScmInheritance/pom.xml
blob: 3323e47d60f5b76f70f5b37b35127bf3aa5879df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?><project>
  <modelVersion>4.0.0</modelVersion>

  <groupId>scm.inherit</groupId>
  <artifactId>parent</artifactId>
  <version>1</version>
  <packaging>pom</packaging>

  <scm>
    <connection>scm:svn:http://host/trunk/parent</connection>
    <developerConnection>scm:svn:https://host/trunk/parent</developerConnection>
    <url>http://host/viewer?path=/trunk/parent</url>
  </scm>

  <modules>
    <module>modules/child1</module>
  </modules>

</project>