mirror of https://github.com/renovatebot/renovate
202 lines
5.1 KiB
XML
202 lines
5.1 KiB
XML
|
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<parent>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>42</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>ExamplePomFile</artifactId>
|
|
|
|
<name>Example</name>
|
|
<version>0.0.1</version>
|
|
<description>Minimal example</description>
|
|
<url>http://example.org/index.html</url>
|
|
|
|
<scm>
|
|
<url>http://example.org/src.git</url>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<url>http://example.org/</url>
|
|
</issueManagement>
|
|
|
|
<properties>
|
|
<quuxGroup>org.example</quuxGroup>
|
|
<quuxId>quux</quuxId>
|
|
<quuxVersion>
|
|
1.2.3.4
|
|
</quuxVersion>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>foo</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>
|
|
org.example
|
|
</groupId>
|
|
<artifactId>
|
|
bar
|
|
</artifactId>
|
|
<version>
|
|
1.0.0
|
|
</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<finalName>SamplePomfile</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.4.2</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
<version>1.8.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jasig.maven</groupId>
|
|
<artifactId>maven-notice-plugin</artifactId>
|
|
<configuration>
|
|
<noticeTemplate>NOTICE.template</noticeTemplate>
|
|
<generateChildNotices>false</generateChildNotices>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>extension-artefact</artifactId>
|
|
<version>1.0</version>
|
|
</extension>
|
|
</extensions>
|
|
</build>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>${artifact-id-placeholder}</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${group-id-placeholder}</groupId>
|
|
<artifactId>baz</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${quuxGroup}</groupId>
|
|
<artifactId>${quuxId}</artifactId>
|
|
<version>${quuxVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${quuxGroup}</groupId>
|
|
<artifactId>${quuxId}-test</artifactId>
|
|
<version>${quuxVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>quuz</artifactId>
|
|
<version>1.2.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>quuuz</artifactId>
|
|
<version>it's not a version</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>hard-range</artifactId>
|
|
<version>[1.0.0]</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>optional</artifactId>
|
|
<version>1.0.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<distributionManagement>
|
|
<relocation>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>relocation-artifact</artifactId>
|
|
<version>1.0</version>
|
|
<message>We have moved the Project under Apache</message>
|
|
</relocation>
|
|
</distributionManagement>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>profile-id</id>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>profile-artifact</artifactId>
|
|
<version>${profile-placeholder}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.example</groupId>
|
|
<artifactId>profile-build-artefact</artifactId>
|
|
<version>2.17</version>
|
|
<configuration>
|
|
<configLocation>google_checks.xml</configLocation>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.17</version>
|
|
<configuration>
|
|
<configLocation>google_checks.xml</configLocation>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>atlassian</id>
|
|
<name>Atlassian Repository</name>
|
|
<url>https://maven.atlassian.com/content/repositories/atlassian-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>nonsense</id>
|
|
<name>The item without url</name>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|