manage logging libraries
[maven-build-process.git] / maven-boms / maven-boms-all / pom.xml
blobabfe02d59510fe1c15af3c67fb23948549b74d84
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of maven-build-process. It is subject to the license terms in the LICENSE file found in the top-level
5     directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of maven-build-process,
6     including this file, may be copied, modified, propagated, or distributed except according to the terms contained
7     in the LICENSE file.
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
13   <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!--                                 PARENT                                  -->
17   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18   <!-- https://maven.apache.org/pom.html#Inheritance -->
19   <parent>
20     <groupId>de.xn--ho-hia.maven.boms</groupId>
21     <artifactId>maven-boms</artifactId>
22     <version>9999.99.99-SNAPSHOT</version>
23   </parent>
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!--                               COORDINATES                               -->
27   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29   <artifactId>maven-boms-all</artifactId>
30   <packaging>pom</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Maven BOMs :: All</name>
37   <description>Includes all other BOMs</description>
39   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40   <!--                                PROPERTIES                               -->
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!-- https://maven.apache.org/pom.html#Properties -->
43   <properties>
44     <version.spring>4.3.3.RELEASE</version.spring>
45     <version.spring.integration>4.3.4.RELEASE</version.spring.integration>
46     <version.swarmic>1.0.0.Alpha1</version.swarmic>
47   </properties>
49   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
50   <!--                            DEPENDENCY MANAGEMENT                        -->
51   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52   <!-- https://maven.apache.org/pom.html#Dependency_Management -->
53   <dependencyManagement>
54     <dependencies>
55       <!-- externally managed -->
56       <dependency>
57         <groupId>org.springframework</groupId>
58         <artifactId>spring-framework-bom</artifactId>
59         <version>${version.spring}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63       <dependency>
64         <groupId>org.springframework.integration</groupId>
65         <artifactId>spring-integration-bom</artifactId>
66         <version>${version.spring.integration}</version>
67         <type>pom</type>
68         <scope>import</scope>
69       </dependency>
70       <dependency>
71         <groupId>org.swarmic</groupId>
72         <artifactId>swarmic-bom</artifactId>
73         <version>${version.swarmic}</version>
74         <type>pom</type>
75         <scope>import</scope>
76       </dependency>
78       <!-- internally managed -->
79       <dependency>
80         <groupId>de.xn--ho-hia.maven.boms</groupId>
81         <artifactId>maven-boms-aspect</artifactId>
82         <version>${project.version}</version>
83         <type>pom</type>
84         <scope>import</scope>
85       </dependency>
86       <dependency>
87         <groupId>de.xn--ho-hia.maven.boms</groupId>
88         <artifactId>maven-boms-bytecode</artifactId>
89         <version>${project.version}</version>
90         <type>pom</type>
91         <scope>import</scope>
92       </dependency>
93       <dependency>
94         <groupId>de.xn--ho-hia.maven.boms</groupId>
95         <artifactId>maven-boms-cache</artifactId>
96         <version>${project.version}</version>
97         <type>pom</type>
98         <scope>import</scope>
99       </dependency>
100       <dependency>
101         <groupId>de.xn--ho-hia.maven.boms</groupId>
102         <artifactId>maven-boms-camel</artifactId>
103         <version>${project.version}</version>
104         <type>pom</type>
105         <scope>import</scope>
106       </dependency>
107       <dependency>
108         <groupId>de.xn--ho-hia.maven.boms</groupId>
109         <artifactId>maven-boms-database</artifactId>
110         <version>${project.version}</version>
111         <type>pom</type>
112         <scope>import</scope>
113       </dependency>
114       <dependency>
115         <groupId>de.xn--ho-hia.maven.boms</groupId>
116         <artifactId>maven-boms-eclipse</artifactId>
117         <version>${project.version}</version>
118         <type>pom</type>
119         <scope>import</scope>
120       </dependency>
121       <dependency>
122         <groupId>de.xn--ho-hia.maven.boms</groupId>
123         <artifactId>maven-boms-google</artifactId>
124         <version>${project.version}</version>
125         <type>pom</type>
126         <scope>import</scope>
127       </dependency>
128       <dependency>
129         <groupId>de.xn--ho-hia.maven.boms</groupId>
130         <artifactId>maven-boms-javax</artifactId>
131         <version>${project.version}</version>
132         <type>pom</type>
133         <scope>import</scope>
134       </dependency>
135       <dependency>
136         <groupId>de.xn--ho-hia.maven.boms</groupId>
137         <artifactId>maven-boms-json</artifactId>
138         <version>${project.version}</version>
139         <type>pom</type>
140         <scope>import</scope>
141       </dependency>
142       <dependency>
143         <groupId>de.xn--ho-hia.maven.boms</groupId>
144         <artifactId>maven-boms-kafka</artifactId>
145         <version>${project.version}</version>
146         <type>pom</type>
147         <scope>import</scope>
148       </dependency>
149       <dependency>
150         <groupId>de.xn--ho-hia.maven.boms</groupId>
151         <artifactId>maven-boms-karaf</artifactId>
152         <version>${project.version}</version>
153         <type>pom</type>
154         <scope>import</scope>
155       </dependency>
156       <dependency>
157         <groupId>de.xn--ho-hia.maven.boms</groupId>
158         <artifactId>maven-boms-logging</artifactId>
159         <version>${project.version}</version>
160         <type>pom</type>
161         <scope>import</scope>
162       </dependency>
163       <dependency>
164         <groupId>de.xn--ho-hia.maven.boms</groupId>
165         <artifactId>maven-boms-maven</artifactId>
166         <version>${project.version}</version>
167         <type>pom</type>
168         <scope>import</scope>
169       </dependency>
170       <dependency>
171         <groupId>de.xn--ho-hia.maven.boms</groupId>
172         <artifactId>maven-boms-pax</artifactId>
173         <version>${project.version}</version>
174         <type>pom</type>
175         <scope>import</scope>
176       </dependency>
177       <dependency>
178         <groupId>de.xn--ho-hia.maven.boms</groupId>
179         <artifactId>maven-boms-scripting</artifactId>
180         <version>${project.version}</version>
181         <type>pom</type>
182         <scope>import</scope>
183       </dependency>
184       <dependency>
185         <groupId>de.xn--ho-hia.maven.boms</groupId>
186         <artifactId>maven-boms-sebhoss</artifactId>
187         <version>${project.version}</version>
188         <type>pom</type>
189         <scope>import</scope>
190       </dependency>
191       <dependency>
192         <groupId>de.xn--ho-hia.maven.boms</groupId>
193         <artifactId>maven-boms-square</artifactId>
194         <version>${project.version}</version>
195         <type>pom</type>
196         <scope>import</scope>
197       </dependency>
198       <dependency>
199         <groupId>de.xn--ho-hia.maven.boms</groupId>
200         <artifactId>maven-boms-testing</artifactId>
201         <version>${project.version}</version>
202         <type>pom</type>
203         <scope>import</scope>
204       </dependency>
205       <dependency>
206         <groupId>de.xn--ho-hia.maven.boms</groupId>
207         <artifactId>maven-boms-wikitext</artifactId>
208         <version>${project.version}</version>
209         <type>pom</type>
210         <scope>import</scope>
211       </dependency>
212       <dependency>
213         <groupId>de.xn--ho-hia.maven.boms</groupId>
214         <artifactId>maven-boms-xml</artifactId>
215         <version>${project.version}</version>
216         <type>pom</type>
217         <scope>import</scope>
218       </dependency>
219       <dependency>
220         <groupId>de.xn--ho-hia.maven.boms</groupId>
221         <artifactId>maven-boms-yaml</artifactId>
222         <version>${project.version}</version>
223         <type>pom</type>
224         <scope>import</scope>
225       </dependency>
226     </dependencies>
227   </dependencyManagement>
229 </project>