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-google</artifactId>
30 <packaging>pom</packaging>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>Maven BOMs :: Google</name>
37 <description>Google related dependencies</description>
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42 <!-- https://maven.apache.org/pom.html#Properties -->
44 <version.auto-value>1.5.2</version.auto-value>
45 <version.guava>23.5-jre</version.guava>
46 <version.guice>4.1.0</version.guice>
47 <version.truth>0.36</version.truth>
48 <version.api>1.23.0</version.api>
51 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52 <!-- DEPENDENCY MANAGEMENT -->
53 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
54 <!-- https://maven.apache.org/pom.html#Dependency_Management -->
55 <dependencyManagement>
58 <!-- https://github.com/google/auto/tree/master/value -->
60 <groupId>com.google.auto.value</groupId>
61 <artifactId>auto-value</artifactId>
62 <version>${version.auto-value}</version>
66 <!-- https://github.com/google/guava -->
68 <groupId>com.google.guava</groupId>
69 <artifactId>guava</artifactId>
70 <version>${version.guava}</version>
74 <!-- https://github.com/google/guice -->
76 <groupId>com.google.inject</groupId>
77 <artifactId>guice</artifactId>
78 <version>${version.guice}</version>
81 <groupId>com.google.inject.extensions</groupId>
82 <artifactId>guice-multibindings</artifactId>
83 <version>${version.guice}</version>
86 <groupId>com.google.inject.extensions</groupId>
87 <artifactId>guice-assistedinject</artifactId>
88 <version>${version.guice}</version>
91 <groupId>com.google.inject.extensions</groupId>
92 <artifactId>guice-throwingproviders</artifactId>
93 <version>${version.guice}</version>
96 <groupId>com.google.inject.extensions</groupId>
97 <artifactId>guice-persist</artifactId>
98 <version>${version.guice}</version>
101 <groupId>com.google.inject.extensions</groupId>
102 <artifactId>guice-jndi</artifactId>
103 <version>${version.guice}</version>
106 <groupId>com.google.inject.extensions</groupId>
107 <artifactId>guice-jmx</artifactId>
108 <version>${version.guice}</version>
111 <groupId>com.google.inject.extensions</groupId>
112 <artifactId>guice-grapher</artifactId>
113 <version>${version.guice}</version>
116 <groupId>com.google.inject.extensions</groupId>
117 <artifactId>guice-struts2</artifactId>
118 <version>${version.guice}</version>
121 <groupId>com.google.inject.extensions</groupId>
122 <artifactId>guice-spring</artifactId>
123 <version>${version.guice}</version>
126 <groupId>com.google.inject.extensions</groupId>
127 <artifactId>guice-servlet</artifactId>
128 <version>${version.guice}</version>
132 <!-- http://google.github.io/truth/ -->
134 <groupId>com.google.truth</groupId>
135 <artifactId>truth</artifactId>
136 <version>${version.truth}</version>
140 <!-- https://developers.google.com/ -->
142 <groupId>com.google.api-client</groupId>
143 <artifactId>google-api-client</artifactId>
144 <version>${version.api}</version>
147 <groupId>com.google.oauth-client</groupId>
148 <artifactId>google-oauth-client</artifactId>
149 <version>${version.api}</version>
152 <groupId>com.google.http-client</groupId>
153 <artifactId>google-http-client</artifactId>
154 <version>${version.api}</version>
157 </dependencyManagement>