2022-10-02 04:41:25 -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.
|
|
|
|
-->
|
|
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api</artifactId>
|
2024-12-13 18:22:29 -05:00
|
|
|
<version>4.0.0-rc-3-SNAPSHOT</version>
|
2022-10-02 04:41:25 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>maven-api-core</artifactId>
|
2022-12-31 11:32:07 -05:00
|
|
|
<name>Maven 4 API :: Core</name>
|
2023-11-17 10:52:15 -05:00
|
|
|
<description>Maven 4 API - Maven Core API</description>
|
2022-10-02 04:41:25 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2024-12-10 16:43:27 -05:00
|
|
|
<artifactId>maven-api-annotations</artifactId>
|
2022-10-02 04:41:25 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-settings</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-toolchain</artifactId>
|
|
|
|
</dependency>
|
2023-12-05 03:11:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-plugin</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-02-05 04:45:47 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
2024-04-24 05:41:31 -04:00
|
|
|
<artifactId>maven-api-xml</artifactId>
|
2023-12-05 03:11:33 -05:00
|
|
|
</dependency>
|
2024-04-24 07:35:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-api-di</artifactId>
|
|
|
|
</dependency>
|
2024-12-12 06:02:17 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-10-02 04:41:25 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|