|
5 | 5 | <artifactId>google-auth-library-bom</artifactId> |
6 | 6 | <version>1.43.1-SNAPSHOT</version><!-- {x-version-update:google-auth-library-bom:current} --> |
7 | 7 | <packaging>pom</packaging> |
| 8 | + |
| 9 | + <parent> |
| 10 | + <groupId>com.google.cloud</groupId> |
| 11 | + <artifactId>google-cloud-pom-parent</artifactId> |
| 12 | + <version>1.83.0-SNAPSHOT</version><!-- {x-version-update:google-cloud-java:current} --> |
| 13 | + <relativePath>../../google-cloud-pom-parent/pom.xml</relativePath> |
| 14 | + </parent> |
| 15 | + |
8 | 16 | <name>Google Auth Library for Java BOM</name> |
9 | 17 | <description> |
10 | 18 | BOM for Google Auth Library for Java |
11 | 19 | </description> |
12 | | - <url>https://github.com/googleapis/google-cloud-java</url> |
13 | | - |
14 | | - <distributionManagement> |
15 | | - <snapshotRepository> |
16 | | - <id>sonatype-nexus-snapshots</id> |
17 | | - <url>https://google.oss.sonatype.org/content/repositories/snapshots</url> |
18 | | - </snapshotRepository> |
19 | | - </distributionManagement> |
20 | | - |
21 | | - <licenses> |
22 | | - <license> |
23 | | - <name>Apache-2.0</name> |
24 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
25 | | - <distribution>repo</distribution> |
26 | | - </license> |
27 | | - </licenses> |
28 | | - |
29 | | - <organization> |
30 | | - <name>Google</name> |
31 | | - <url>http://www.google.com/</url> |
32 | | - </organization> |
33 | | - |
34 | | - <scm> |
35 | | - <connection>scm:git:https://github.com/googleapis/google-cloud-java.git</connection> |
36 | | - <developerConnection>scm:git:https://github.com/googleapis/google-cloud-java.git</developerConnection> |
37 | | - <url>https://github.com/googleapis/google-cloud-java</url> |
38 | | - </scm> |
39 | | - |
40 | | - <developers> |
41 | | - <developer> |
42 | | - <name>Jeff Ching</name> |
43 | | - <email>chingor@google.com</email> |
44 | | - <roles> |
45 | | - <role>developer</role> |
46 | | - </roles> |
47 | | - </developer> |
48 | | - </developers> |
49 | 20 |
|
50 | 21 | <dependencyManagement> |
51 | 22 | <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>com.google.auth</groupId> |
| 25 | + <artifactId>google-auth-library-credentials</artifactId> |
| 26 | + <version>1.43.1-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} --> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>com.google.auth</groupId> |
| 30 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 31 | + <version>1.43.1-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} --> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>com.google.auth</groupId> |
| 35 | + <artifactId>google-auth-library-appengine</artifactId> |
| 36 | + <version>1.43.1-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} --> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>com.google.auth</groupId> |
| 40 | + <artifactId>google-auth-library-cab-token-generator</artifactId> |
| 41 | + <version>1.43.1-SNAPSHOT</version><!-- {x-version-update:google-auth-library-parent:current} --> |
| 42 | + </dependency> |
52 | 43 | </dependencies> |
53 | 44 | </dependencyManagement> |
54 | | - |
55 | | - <build> |
56 | | - <pluginManagement> |
57 | | - <plugins> |
58 | | - <plugin> |
59 | | - <groupId>org.sonatype.plugins</groupId> |
60 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
61 | | - <version>1.7.0</version> |
62 | | - <extensions>true</extensions> |
63 | | - <configuration> |
64 | | - <serverId>ossrh</serverId> |
65 | | - <nexusUrl>https://google.oss.sonatype.org/</nexusUrl> |
66 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
67 | | - </configuration> |
68 | | - </plugin> |
69 | | - </plugins> |
70 | | - </pluginManagement> |
71 | | - <plugins> |
72 | | - <plugin> |
73 | | - <groupId>org.apache.maven.plugins</groupId> |
74 | | - <artifactId>maven-javadoc-plugin</artifactId> |
75 | | - <version>3.11.2</version> |
76 | | - <configuration> |
77 | | - <skip>true</skip> |
78 | | - </configuration> |
79 | | - </plugin> |
80 | | - <plugin> |
81 | | - <groupId>org.apache.maven.plugins</groupId> |
82 | | - <artifactId>maven-site-plugin</artifactId> |
83 | | - <version>3.21.0</version> |
84 | | - <configuration> |
85 | | - <skip>true</skip> |
86 | | - </configuration> |
87 | | - </plugin> |
88 | | - |
89 | | - <plugin> |
90 | | - <groupId>com.spotify.fmt</groupId> |
91 | | - <artifactId>fmt-maven-plugin</artifactId> |
92 | | - <version>2.25</version> |
93 | | - <configuration> |
94 | | - <verbose>true</verbose> |
95 | | - </configuration> |
96 | | - </plugin> |
97 | | - </plugins> |
98 | | - </build> |
99 | | - |
100 | | - <profiles> |
101 | | - <profile> |
102 | | - <!-- By default, we release artifacts to Sonatype, which requires |
103 | | - nexus-staging-maven-plugin. --> |
104 | | - <id>release-sonatype</id> |
105 | | - <activation> |
106 | | - <property> |
107 | | - <!-- Only when we use the release-gcp-artifact-registry profile, |
108 | | - which comes with artifact-registry-url property, this profile is |
109 | | - turned off. --> |
110 | | - <name>!artifact-registry-url</name> |
111 | | - </property> |
112 | | - </activation> |
113 | | - <build> |
114 | | - <plugins> |
115 | | - <plugin> |
116 | | - <groupId>org.sonatype.plugins</groupId> |
117 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
118 | | - </plugin> |
119 | | - </plugins> |
120 | | - </build> |
121 | | - </profile> |
122 | | - <profile> |
123 | | - <!-- Optionally, we can publish the artifacts to GCP Artifact Registry specifying |
124 | | - this release-gcp-artifact-registry profile: |
125 | | - mvn deploy -P=release-gcp-artifact-registry -P=-release-sonatype \ |
126 | | - -Dartifact-registry-url=artifactregistry://us-maven.pkg.dev/... |
127 | | - --> |
128 | | - <id>release-gcp-artifact-registry</id> |
129 | | - <properties> |
130 | | - <artifact-registry-url>artifactregistry://undefined-artifact-registry-url-value</artifact-registry-url> |
131 | | - </properties> |
132 | | - <distributionManagement> |
133 | | - <repository> |
134 | | - <id>gcp-artifact-registry-repository</id> |
135 | | - <url>${artifact-registry-url}</url> |
136 | | - </repository> |
137 | | - <snapshotRepository> |
138 | | - <id>gcp-artifact-registry-repository</id> |
139 | | - <url>${artifact-registry-url}</url> |
140 | | - </snapshotRepository> |
141 | | - </distributionManagement> |
142 | | - </profile> |
143 | | - <profile> |
144 | | - <id>release-sign-artifacts</id> |
145 | | - <activation> |
146 | | - <property> |
147 | | - <name>performRelease</name> |
148 | | - <value>true</value> |
149 | | - </property> |
150 | | - </activation> |
151 | | - <build> |
152 | | - <plugins> |
153 | | - <plugin> |
154 | | - <groupId>org.apache.maven.plugins</groupId> |
155 | | - <artifactId>maven-gpg-plugin</artifactId> |
156 | | - <version>3.2.7</version> |
157 | | - <executions> |
158 | | - <execution> |
159 | | - <id>sign-artifacts</id> |
160 | | - <phase>verify</phase> |
161 | | - <goals> |
162 | | - <goal>sign</goal> |
163 | | - </goals> |
164 | | - <configuration> |
165 | | - <gpgArguments> |
166 | | - <arg>--pinentry-mode</arg> |
167 | | - <arg>loopback</arg> |
168 | | - </gpgArguments> |
169 | | - </configuration> |
170 | | - </execution> |
171 | | - </executions> |
172 | | - </plugin> |
173 | | - </plugins> |
174 | | - </build> |
175 | | - </profile> |
176 | | - </profiles> |
177 | 45 | </project> |
0 commit comments