2010-07-16 05:59:13 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
2019-11-07 10:16:39 -05:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2010-07-16 05:59:13 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
2022-10-14 19:41:39 -04:00
|
|
|
<version>4.0.0-alpha-3-SNAPSHOT</version>
|
2010-07-16 05:59:13 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>maven-settings-builder</artifactId>
|
|
|
|
|
|
|
|
<name>Maven Settings Builder</name>
|
2011-07-20 18:10:09 -04:00
|
|
|
<description>The effective settings builder, with inheritance and password decryption.</description>
|
2010-07-16 05:59:13 -04:00
|
|
|
|
2015-04-04 08:00:59 -04:00
|
|
|
<contributors>
|
|
|
|
<contributor>
|
|
|
|
<name>Thomas Meyer</name>
|
|
|
|
</contributor>
|
|
|
|
</contributors>
|
|
|
|
|
2010-07-16 05:59:13 -04:00
|
|
|
<dependencies>
|
2014-12-23 08:09:01 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-builder-support</artifactId>
|
|
|
|
</dependency>
|
2015-10-16 06:47:02 -04:00
|
|
|
|
2010-07-16 05:59:13 -04:00
|
|
|
<dependency>
|
2019-04-21 07:10:45 -04:00
|
|
|
<groupId>javax.inject</groupId>
|
|
|
|
<artifactId>javax.inject</artifactId>
|
2010-07-16 05:59:13 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-interpolation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-10-14 19:20:24 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2019-04-21 07:10:45 -04:00
|
|
|
<artifactId>plexus-utils</artifactId>
|
2010-07-16 05:59:13 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-09-10 08:33:45 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2010-07-16 05:59:13 -04:00
|
|
|
<artifactId>plexus-sec-dispatcher</artifactId>
|
|
|
|
</dependency>
|
2022-07-17 15:03:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-cipher</artifactId>
|
|
|
|
</dependency>
|
2010-07-16 05:59:13 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2019-04-21 07:10:45 -04:00
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>sisu-maven-plugin</artifactId>
|
2010-07-16 05:59:13 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|