1 <?xml version="1.0" encoding="UTF-8"?>
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
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 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18 <!-- https://maven.apache.org/pom.html#Inheritance -->
20 <groupId>de.xn--ho-hia.maven.boms</groupId>
21 <artifactId>maven-boms</artifactId>
22 <version>9999.99.99-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>maven-boms-square</artifactId>
30 <packaging>pom</packaging>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>Maven BOMs :: Square</name>
37 <description>Square related dependencies</description>
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42 <!-- https://maven.apache.org/pom.html#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>
50 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
51 <!-- DEPENDENCY MANAGEMENT -->
52 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
53 <!-- https://maven.apache.org/pom.html#Dependency_Management -->
54 <dependencyManagement>
57 <!-- https://square.github.io/okhttp/ -->
59 <groupId>com.squareup.okhttp</groupId>
60 <artifactId>okhttp</artifactId>
61 <version>${version.okhttp}</version>
64 <groupId>com.squareup.okhttp</groupId>
65 <artifactId>okhttp-apache</artifactId>
66 <version>${version.okhttp}</version>
69 <groupId>com.squareup.okhttp</groupId>
70 <artifactId>okhttp-android-support</artifactId>
71 <version>${version.okhttp}</version>
74 <groupId>com.squareup.okhttp</groupId>
75 <artifactId>okhttp-urlconnection</artifactId>
76 <version>${version.okhttp}</version>
79 <groupId>com.squareup.okhttp</groupId>
80 <artifactId>okhttp-mockwebserver</artifactId>
81 <version>${version.okhttp}</version>
84 <groupId>com.squareup.okhttp</groupId>
85 <artifactId>okhttp-ws</artifactId>
86 <version>${version.okhttp}</version>
89 <groupId>com.squareup.okhttp</groupId>
90 <artifactId>okhttp-testing-support</artifactId>
91 <version>${version.okhttp}</version>
94 <groupId>com.squareup.okhttp</groupId>
95 <artifactId>okcurl</artifactId>
96 <version>${version.okhttp}</version>
100 <!-- https://square.github.io/okhttp/ -->
102 <groupId>com.squareup.okhttp3</groupId>
103 <artifactId>okhttp</artifactId>
104 <version>${version.okhttp3}</version>
107 <groupId>com.squareup.okhttp3</groupId>
108 <artifactId>okhttp-apache</artifactId>
109 <version>${version.okhttp3}</version>
112 <groupId>com.squareup.okhttp3</groupId>
113 <artifactId>okhttp-android-support</artifactId>
114 <version>${version.okhttp3}</version>
117 <groupId>com.squareup.okhttp3</groupId>
118 <artifactId>okhttp-urlconnection</artifactId>
119 <version>${version.okhttp3}</version>
122 <groupId>com.squareup.okhttp3</groupId>
123 <artifactId>okhttp-mockwebserver</artifactId>
124 <version>${version.okhttp3}</version>
127 <groupId>com.squareup.okhttp3</groupId>
128 <artifactId>okhttp-ws</artifactId>
129 <version>${version.okhttp3}</version>
132 <groupId>com.squareup.okhttp3</groupId>
133 <artifactId>okhttp-testing-support</artifactId>
134 <version>${version.okhttp3}</version>
137 <groupId>com.squareup.okhttp3</groupId>
138 <artifactId>okcurl</artifactId>
139 <version>${version.okhttp3}</version>
143 <!-- https://github.com/square/javapoet -->
145 <groupId>com.squareup</groupId>
146 <artifactId>javapoet</artifactId>
147 <version>${version.javapoet}</version>
151 <!-- http://square.github.io/retrofit/ -->
153 <groupId>com.squareup.retrofit2</groupId>
154 <artifactId>retrofit</artifactId>
155 <version>${version.retrofit}</version>
158 </dependencyManagement>