|
14 | 14 | <url>https://github.com/googleapis/google-cloud-java</url> |
15 | 15 |
|
16 | 16 | <parent> |
17 | | - <!-- Because we cannot release com.google.auth and com.google.cloud together, |
18 | | - we skip the deployment of this module <maven.deploy.skip>true</maven.deploy.skip> --> |
19 | 17 | <groupId>com.google.cloud</groupId> |
20 | | - <artifactId>google-cloud-jar-parent</artifactId> |
21 | | - <version>1.83.0</version><!-- {x-version-update:google-cloud-java:current} --> |
22 | | - <relativePath>../google-cloud-jar-parent/pom.xml</relativePath> |
| 18 | + <artifactId>google-cloud-shared-config</artifactId> |
| 19 | + <!-- Do not depend on the version in this monorepo. It causes the publication order problem. --> |
| 20 | + <version>1.17.0</version> |
23 | 21 | </parent> |
24 | 22 |
|
25 | 23 | <distributionManagement> |
|
82 | 80 | <project.appengine.version>2.0.33</project.appengine.version> |
83 | 81 | <project.findbugs.version>3.0.2</project.findbugs.version> |
84 | 82 | <deploy.autorelease>false</deploy.autorelease> |
85 | | - <project.error-prone.version>2.38.0</project.error-prone.version> |
| 83 | + <project.error-prone.version>2.42.0</project.error-prone.version> |
86 | 84 | <project.protobuf.version>4.33.2</project.protobuf.version> |
87 | 85 | <project.cel.version>0.9.0-proto3</project.cel.version> |
88 | 86 | <project.tink.version>1.15.0</project.tink.version> |
89 | 87 | <project.slf4j.version>2.0.17</project.slf4j.version> |
90 | 88 | <project.gson.version>2.12.1</project.gson.version> |
91 | 89 | <project.api-common.version>2.53.0</project.api-common.version> |
| 90 | + <surefire.version>3.5.2</surefire.version> |
92 | 91 | <clirr.skip>true</clirr.skip> |
93 | | - <maven.deploy.skip>true</maven.deploy.skip> |
94 | 92 | </properties> |
95 | 93 |
|
96 | 94 | <dependencyManagement> |
| 95 | + <!-- Do not import --> |
97 | 96 | <dependencies> |
| 97 | + <dependency> |
| 98 | + <groupId>com.google.http-client</groupId> |
| 99 | + <artifactId>google-http-client-bom</artifactId> |
| 100 | + <version>${project.google.http.version}</version> |
| 101 | + <type>pom</type> |
| 102 | + <scope>import</scope> |
| 103 | + </dependency> |
| 104 | + <dependency> |
| 105 | + <groupId>com.google.guava</groupId> |
| 106 | + <artifactId>guava-bom</artifactId> |
| 107 | + <version>${project.guava.version}</version> |
| 108 | + <type>pom</type> |
| 109 | + <scope>import</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>com.google.protobuf</groupId> |
| 113 | + <artifactId>protobuf-bom</artifactId> |
| 114 | + <version>${project.protobuf.version}</version> |
| 115 | + <type>pom</type> |
| 116 | + <scope>import</scope> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.junit</groupId> |
| 120 | + <artifactId>junit-bom</artifactId> |
| 121 | + <version>${project.junit.version}</version> |
| 122 | + <type>pom</type> |
| 123 | + <scope>import</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>com.google.auth</groupId> |
| 127 | + <artifactId>google-auth-library-credentials</artifactId> |
| 128 | + <version>${project.version}</version> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>com.google.auth</groupId> |
| 132 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 133 | + <version>${project.version}</version> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>com.google.auth</groupId> |
| 137 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 138 | + <version>${project.version}</version> |
| 139 | + <type>test-jar</type> |
| 140 | + <classifier>testlib</classifier> |
| 141 | + <scope>test</scope> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>org.mockito</groupId> |
| 145 | + <artifactId>mockito-core</artifactId> |
| 146 | + <version>4.11.0</version> |
| 147 | + <scope>test</scope> |
| 148 | + </dependency> |
98 | 149 | <dependency> |
99 | 150 | <groupId>org.mockito</groupId> |
100 | 151 | <artifactId>mockito-junit-jupiter</artifactId> |
|
107 | 158 | <version>${project.appengine.version}</version> |
108 | 159 | </dependency> |
109 | 160 | <dependency> |
110 | | - <groupId>org.junit</groupId> |
111 | | - <artifactId>junit-bom</artifactId> |
112 | | - <version>${project.junit.version}</version> |
113 | | - <type>pom</type> |
114 | | - <scope>import</scope> |
| 161 | + <groupId>com.google.api</groupId> |
| 162 | + <artifactId>api-common</artifactId> |
| 163 | + <version>${project.api-common.version}</version> |
| 164 | + </dependency> |
| 165 | + <dependency> |
| 166 | + <groupId>dev.cel</groupId> |
| 167 | + <artifactId>cel</artifactId> |
| 168 | + <version>${project.cel.version}</version> |
| 169 | + </dependency> |
| 170 | + <dependency> |
| 171 | + <groupId>com.google.crypto.tink</groupId> |
| 172 | + <artifactId>tink</artifactId> |
| 173 | + <version>${project.tink.version}</version> |
| 174 | + </dependency> |
| 175 | + <dependency> |
| 176 | + <groupId>com.google.code.findbugs</groupId> |
| 177 | + <artifactId>jsr305</artifactId> |
| 178 | + <version>${project.findbugs.version}</version> |
| 179 | + </dependency> |
| 180 | + <dependency> |
| 181 | + <groupId>com.google.errorprone</groupId> |
| 182 | + <artifactId>error_prone_annotations</artifactId> |
| 183 | + <version>${project.error-prone.version}</version> |
115 | 184 | </dependency> |
116 | 185 | </dependencies> |
117 | 186 | </dependencyManagement> |
|
0 commit comments