manage okhttp3
[maven-build-process.git] / maven-boms / maven-boms-square / pom.xml
blobcb48340e4cdd3fc60b41641ef48a9f34b270c990
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-square</artifactId>
30   <packaging>pom</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Maven BOMs :: Square</name>
37   <description>Square related dependencies</description>
39   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40   <!--                                PROPERTIES                               -->
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!-- https://maven.apache.org/pom.html#Properties -->
43   <properties>
44     <version.okhttp>2.7.5</version.okhttp>
45     <version.okhttp3>3.4.1</version.okhttp3>
46     <version.javapoet>1.7.0</version.javapoet>
47     <version.retrofit>2.1.0</version.retrofit>
48   </properties>
50   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
51   <!--                            DEPENDENCY MANAGEMENT                        -->
52   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
53   <!-- https://maven.apache.org/pom.html#Dependency_Management -->
54   <dependencyManagement>
55     <dependencies>
56       <!-- OkHttp2 -->
57       <!-- https://square.github.io/okhttp/ -->
58       <dependency>
59         <groupId>com.squareup.okhttp</groupId>
60         <artifactId>okhttp</artifactId>
61         <version>${version.okhttp}</version>
62       </dependency>
63       <dependency>
64         <groupId>com.squareup.okhttp</groupId>
65         <artifactId>okhttp-apache</artifactId>
66         <version>${version.okhttp}</version>
67       </dependency>
68       <dependency>
69         <groupId>com.squareup.okhttp</groupId>
70         <artifactId>okhttp-android-support</artifactId>
71         <version>${version.okhttp}</version>
72       </dependency>
73       <dependency>
74         <groupId>com.squareup.okhttp</groupId>
75         <artifactId>okhttp-urlconnection</artifactId>
76         <version>${version.okhttp}</version>
77       </dependency>
78       <dependency>
79         <groupId>com.squareup.okhttp</groupId>
80         <artifactId>okhttp-mockwebserver</artifactId>
81         <version>${version.okhttp}</version>
82       </dependency>
83       <dependency>
84         <groupId>com.squareup.okhttp</groupId>
85         <artifactId>okhttp-ws</artifactId>
86         <version>${version.okhttp}</version>
87       </dependency>
88       <dependency>
89         <groupId>com.squareup.okhttp</groupId>
90         <artifactId>okhttp-testing-support</artifactId>
91         <version>${version.okhttp}</version>
92       </dependency>
93       <dependency>
94         <groupId>com.squareup.okhttp</groupId>
95         <artifactId>okcurl</artifactId>
96         <version>${version.okhttp}</version>
97       </dependency>
99       <!-- OkHttp3 -->
100       <!-- https://square.github.io/okhttp/ -->
101       <dependency>
102         <groupId>com.squareup.okhttp3</groupId>
103         <artifactId>okhttp</artifactId>
104         <version>${version.okhttp3}</version>
105       </dependency>
106       <dependency>
107         <groupId>com.squareup.okhttp3</groupId>
108         <artifactId>okhttp-apache</artifactId>
109         <version>${version.okhttp3}</version>
110       </dependency>
111       <dependency>
112         <groupId>com.squareup.okhttp3</groupId>
113         <artifactId>okhttp-android-support</artifactId>
114         <version>${version.okhttp3}</version>
115       </dependency>
116       <dependency>
117         <groupId>com.squareup.okhttp3</groupId>
118         <artifactId>okhttp-urlconnection</artifactId>
119         <version>${version.okhttp3}</version>
120       </dependency>
121       <dependency>
122         <groupId>com.squareup.okhttp3</groupId>
123         <artifactId>okhttp-mockwebserver</artifactId>
124         <version>${version.okhttp3}</version>
125       </dependency>
126       <dependency>
127         <groupId>com.squareup.okhttp3</groupId>
128         <artifactId>okhttp-ws</artifactId>
129         <version>${version.okhttp3}</version>
130       </dependency>
131       <dependency>
132         <groupId>com.squareup.okhttp3</groupId>
133         <artifactId>okhttp-testing-support</artifactId>
134         <version>${version.okhttp3}</version>
135       </dependency>
136       <dependency>
137         <groupId>com.squareup.okhttp3</groupId>
138         <artifactId>okcurl</artifactId>
139         <version>${version.okhttp3}</version>
140       </dependency>
142       <!-- JavaPoet -->
143       <!-- https://github.com/square/javapoet -->
144       <dependency>
145         <groupId>com.squareup</groupId>
146         <artifactId>javapoet</artifactId>
147         <version>${version.javapoet}</version>
148       </dependency>
150       <!-- Retrofit -->
151       <!-- http://square.github.io/retrofit/ -->
152       <dependency>
153         <groupId>com.squareup.retrofit2</groupId>
154         <artifactId>retrofit</artifactId>
155         <version>${version.retrofit}</version>
156       </dependency>
157     </dependencies>
158   </dependencyManagement>
160 </project>