bom-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.maveniverse.maven.bom-builder</groupId> <artifactId>bom-builder</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (C) 2013 Red Hat, Inc ~ ~ Licensed 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>eu.maveniverse.maven.parent</groupId> <artifactId>parent</artifactId> <version>20</version> </parent> <groupId>eu.maveniverse.maven.bom-builder</groupId> <artifactId>bom-builder</artifactId> <version>1.0.1</version> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <modules> <module>bom-builder3</module> <module>it3</module> </modules> <scm> <connection>scm:git:git@github.com:maveniverse/bom-builder-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:maveniverse/bom-builder-maven-plugin.git</developerConnection> <tag>release-1.0.1</tag> <url>https://github.com/maveniverse/bom-builder-maven-plugin</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/maveniverse/bom-builder-maven-plugin/issues</url> </issueManagement> <ciManagement> <system>Github</system> <url>https://github.com/maveniverse/bom-builder-maven-plugin/actions</url> </ciManagement> <properties> <project.build.outputTimestamp>2024-10-17T09:22:47Z</project.build.outputTimestamp> <!-- Build time: latest stable Maven and latest Java LTS. Run time: "not so old" Maven (3.6.3+) and latest Java LTS. --> <maven.compiler.release>8</maven.compiler.release> <requireBuildtimeJavaVersion.version>[21.0.3,)</requireBuildtimeJavaVersion.version> <requireBuildtimeMavenVersion.version>[3.9.9,)</requireBuildtimeMavenVersion.version> <requireRuntimeMavenVersion.version>[3.8.8,)</requireRuntimeMavenVersion.version> <version.maven>3.9.9</version.maven> <version.mavenPluginPlugin>3.15.0</version.mavenPluginPlugin> <version.slf4j>1.7.36</version.slf4j> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${version.maven}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${version.maven}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${version.maven}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model-builder</artifactId> <version>${version.maven}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${version.mavenPluginPlugin}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${version.slf4j}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.11.2</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> </dependency> </dependencies> </dependencyManagement> </project>