0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-03 10:49:20 +00:00
renovatebot_renovate/lib/modules/manager/maven/__fixtures__/parent.pom.xml
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/

BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
2022-03-04 09:04:02 +01:00

30 lines
733 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<parent>
<groupId>org.example</groupId>
<artifactId>child</artifactId>
<version>42</version>
<relativePath>child.pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>ExamplePomParent</artifactId>
<properties>
<quuxGroup>org.example</quuxGroup>
<quuxId>quux</quuxId>
<quuxVersion>
1.2.3.4
</quuxVersion>
<repoUrl>http://example.com/</repoUrl>
</properties>
<repositories>
<repository>
<id>xyz</id>
<name>xyz</name>
<url>http://example.com/nexus/xyz</url>
</repository>
</repositories>
</project>