8.4. Using Maven Dependencies for Red Hat JBoss Data Virtualization
此内容没有您所选择的语言版本。
8.4. Using Maven Dependencies for Red Hat JBoss Data Virtualization
In order to use the correct Maven dependencies in your Red Hat JBoss Data Virtualization project, you must add relevant Bill Of Materials (BOM) and parent POM files to the project's pom.xml file. Adding the BOM and parent POM files ensures that the correct versions of plug-ins and transitive dependencies from the provided Maven repositories are included in the project.
The Maven repository is designed to be used only in combination with Maven Central and no other repositories are required.
The parent POM file to use is org.jboss.dv.component.management:dv-parent-[VERSION].pom
The BOM file to use is org.jboss.dv.component.management:dv-dependency-management-all-[VERSION].pom.
In order to use the Maven dependencies for Red Hat JBoss Data Virtualization, the relevant Bill Of Materials (BOM) and parent POM files must be added to the project POM file. By adding the BOM and parent POM files, you are ensuring that the correct versions of plug-ins and transitive dependencies are included in the project.
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Example POM file using the DV 6.3.0 and EAP 6.4 component versions.
- Parent is set to the DV 6.3.0 parent management POM, which will
- bring in the correct toolchain (plugin) versions.
- DependencyManagement dependencies include the DV 6.3.0 and EAP 6.4
- BOMs - which will bring in the correct compile-time (and other
- scoped) versions.
-->
<name>Example POM for DV 6.3.0</name>
<groupId>org.jboss.dv</groupId>
<artifactId>dv-example</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<parent>
<!-- DV version (parent) -->
<groupId>org.jboss.dv.component.management</groupId>
<artifactId>dv-parent</artifactId>
<version>2.3.0.redhat-10</version>
</parent>
<dependencyManagement>
<dependencies>
<!-- DV BOM -->
<dependency>
<groupId>org.jboss.dv.component.management</groupId>
<artifactId>dv-dependency-management-all</artifactId>
<version>2.3.0.redhat-10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Example POM file using the DV 6.3.0 and EAP 6.4 component versions.
- Parent is set to the DV 6.3.0 parent management POM, which will
- bring in the correct toolchain (plugin) versions.
- DependencyManagement dependencies include the DV 6.3.0 and EAP 6.4
- BOMs - which will bring in the correct compile-time (and other
- scoped) versions.
-->
<name>Example POM for DV 6.3.0</name>
<groupId>org.jboss.dv</groupId>
<artifactId>dv-example</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<parent>
<!-- DV version (parent) -->
<groupId>org.jboss.dv.component.management</groupId>
<artifactId>dv-parent</artifactId>
<version>2.3.0.redhat-10</version>
</parent>
<dependencyManagement>
<dependencies>
<!-- DV BOM -->
<dependency>
<groupId>org.jboss.dv.component.management</groupId>
<artifactId>dv-dependency-management-all</artifactId>
<version>2.3.0.redhat-10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Copy to ClipboardCopied!Toggle word wrapToggle overflow