update props to latest version
[maven-build-process.git] / maven-boms / maven-boms-google / pom.xml
blob516a3633945e47eb4e69871167afc1cd37bdbdef
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-google</artifactId>
30   <packaging>pom</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Maven BOMs :: Google</name>
37   <description>Google related dependencies</description>
39   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40   <!--                                PROPERTIES                               -->
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!-- https://maven.apache.org/pom.html#Properties -->
43   <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>
49   </properties>
51   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52   <!--                            DEPENDENCY MANAGEMENT                        -->
53   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
54   <!-- https://maven.apache.org/pom.html#Dependency_Management -->
55   <dependencyManagement>
56     <dependencies>
57       <!-- Auto-Value -->
58       <!-- https://github.com/google/auto/tree/master/value -->
59       <dependency>
60         <groupId>com.google.auto.value</groupId>
61         <artifactId>auto-value</artifactId>
62         <version>${version.auto-value}</version>
63       </dependency>
65       <!-- Guava -->
66       <!-- https://github.com/google/guava -->
67       <dependency>
68         <groupId>com.google.guava</groupId>
69         <artifactId>guava</artifactId>
70         <version>${version.guava}</version>
71       </dependency>
73       <!-- Guice -->
74       <!-- https://github.com/google/guice -->
75       <dependency>
76         <groupId>com.google.inject</groupId>
77         <artifactId>guice</artifactId>
78         <version>${version.guice}</version>
79       </dependency>
80       <dependency>
81         <groupId>com.google.inject.extensions</groupId>
82         <artifactId>guice-multibindings</artifactId>
83         <version>${version.guice}</version>
84       </dependency>
85       <dependency>
86         <groupId>com.google.inject.extensions</groupId>
87         <artifactId>guice-assistedinject</artifactId>
88         <version>${version.guice}</version>
89       </dependency>
90       <dependency>
91         <groupId>com.google.inject.extensions</groupId>
92         <artifactId>guice-throwingproviders</artifactId>
93         <version>${version.guice}</version>
94       </dependency>
95       <dependency>
96         <groupId>com.google.inject.extensions</groupId>
97         <artifactId>guice-persist</artifactId>
98         <version>${version.guice}</version>
99       </dependency>
100       <dependency>
101         <groupId>com.google.inject.extensions</groupId>
102         <artifactId>guice-jndi</artifactId>
103         <version>${version.guice}</version>
104       </dependency>
105       <dependency>
106         <groupId>com.google.inject.extensions</groupId>
107         <artifactId>guice-jmx</artifactId>
108         <version>${version.guice}</version>
109       </dependency>
110       <dependency>
111         <groupId>com.google.inject.extensions</groupId>
112         <artifactId>guice-grapher</artifactId>
113         <version>${version.guice}</version>
114       </dependency>
115       <dependency>
116         <groupId>com.google.inject.extensions</groupId>
117         <artifactId>guice-struts2</artifactId>
118         <version>${version.guice}</version>
119       </dependency>
120       <dependency>
121         <groupId>com.google.inject.extensions</groupId>
122         <artifactId>guice-spring</artifactId>
123         <version>${version.guice}</version>
124       </dependency>
125       <dependency>
126         <groupId>com.google.inject.extensions</groupId>
127         <artifactId>guice-servlet</artifactId>
128         <version>${version.guice}</version>
129       </dependency>
131       <!-- Truth -->
132       <!-- http://google.github.io/truth/ -->
133       <dependency>
134         <groupId>com.google.truth</groupId>
135         <artifactId>truth</artifactId>
136         <version>${version.truth}</version>
137       </dependency>
139       <!-- API -->
140       <!-- https://developers.google.com/ -->
141       <dependency>
142         <groupId>com.google.api-client</groupId>
143         <artifactId>google-api-client</artifactId>
144         <version>${version.api}</version>
145       </dependency>
146       <dependency>
147         <groupId>com.google.oauth-client</groupId>
148         <artifactId>google-oauth-client</artifactId>
149         <version>${version.api}</version>
150       </dependency>
151       <dependency>
152         <groupId>com.google.http-client</groupId>
153         <artifactId>google-http-client</artifactId>
154         <version>${version.api}</version>
155       </dependency>
156     </dependencies>
157   </dependencyManagement>
159 </project>