xref: /aosp_15_r20/external/jacoco/jacoco-maven-plugin.test/it/settings.xml (revision 7e63c1270baf9bfa84f5b6aecf17bd0c1a75af94)
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
4   This program and the accompanying materials are made available under
5   the terms of the Eclipse Public License 2.0 which is available at
6   http://www.eclipse.org/legal/epl-2.0
7
8   SPDX-License-Identifier: EPL-2.0
9
10   Contributors:
11      Evgeny Mandrikov - initial API and implementation
12-->
13<settings>
14  <profiles>
15    <profile>
16      <id>it-repo</id>
17      <activation>
18        <activeByDefault>true</activeByDefault>
19      </activation>
20      <repositories>
21        <repository>
22          <id>local.central</id>
23          <url>@localRepositoryUrl@</url>
24          <releases>
25            <enabled>true</enabled>
26          </releases>
27          <snapshots>
28            <enabled>true</enabled>
29          </snapshots>
30        </repository>
31      </repositories>
32      <pluginRepositories>
33        <pluginRepository>
34          <id>local.central</id>
35          <url>@localRepositoryUrl@</url>
36          <releases>
37            <enabled>true</enabled>
38          </releases>
39          <snapshots>
40            <enabled>true</enabled>
41          </snapshots>
42        </pluginRepository>
43      </pluginRepositories>
44    </profile>
45  </profiles>
46</settings>
47