xref: /aosp_15_r20/external/google-auth-library-java/bom/pom.xml (revision af546375c95127f07cb26dd492629ccb2e8b1be1)
1*af546375SCole Faust<?xml version="1.0" encoding="UTF-8"?>
2*af546375SCole Faust<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/maven-v4_0_0.xsd">
3*af546375SCole Faust  <modelVersion>4.0.0</modelVersion>
4*af546375SCole Faust  <groupId>com.google.auth</groupId>
5*af546375SCole Faust  <artifactId>google-auth-library-bom</artifactId>
6*af546375SCole Faust  <version>1.23.0</version><!-- {x-version-update:google-auth-library-bom:current} -->
7*af546375SCole Faust  <packaging>pom</packaging>
8*af546375SCole Faust  <name>Google Auth Library for Java BOM</name>
9*af546375SCole Faust  <description>
10*af546375SCole Faust    BOM for Google Auth Library for Java
11*af546375SCole Faust  </description>
12*af546375SCole Faust  <url>https://github.com/googleapis/google-auth-library-java</url>
13*af546375SCole Faust
14*af546375SCole Faust  <distributionManagement>
15*af546375SCole Faust    <snapshotRepository>
16*af546375SCole Faust      <id>sonatype-nexus-snapshots</id>
17*af546375SCole Faust      <url>https://google.oss.sonatype.org/content/repositories/snapshots</url>
18*af546375SCole Faust    </snapshotRepository>
19*af546375SCole Faust  </distributionManagement>
20*af546375SCole Faust
21*af546375SCole Faust  <licenses>
22*af546375SCole Faust    <license>
23*af546375SCole Faust      <name>Apache-2.0</name>
24*af546375SCole Faust      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
25*af546375SCole Faust      <distribution>repo</distribution>
26*af546375SCole Faust    </license>
27*af546375SCole Faust  </licenses>
28*af546375SCole Faust
29*af546375SCole Faust  <organization>
30*af546375SCole Faust    <name>Google</name>
31*af546375SCole Faust    <url>http://www.google.com/</url>
32*af546375SCole Faust  </organization>
33*af546375SCole Faust
34*af546375SCole Faust  <scm>
35*af546375SCole Faust    <connection>scm:git:https://github.com/googleapis/google-auth-library-java.git</connection>
36*af546375SCole Faust    <developerConnection>scm:git:https://github.com/googleapis/google-auth-library-java.git</developerConnection>
37*af546375SCole Faust    <url>https://github.com/googleapis/google-auth-library-java</url>
38*af546375SCole Faust  </scm>
39*af546375SCole Faust
40*af546375SCole Faust  <developers>
41*af546375SCole Faust    <developer>
42*af546375SCole Faust      <name>Jeff Ching</name>
43*af546375SCole Faust      <email>[email protected]</email>
44*af546375SCole Faust      <roles>
45*af546375SCole Faust        <role>developer</role>
46*af546375SCole Faust      </roles>
47*af546375SCole Faust    </developer>
48*af546375SCole Faust  </developers>
49*af546375SCole Faust
50*af546375SCole Faust  <dependencyManagement>
51*af546375SCole Faust    <dependencies>
52*af546375SCole Faust      <dependency>
53*af546375SCole Faust        <groupId>com.google.auth</groupId>
54*af546375SCole Faust        <artifactId>google-auth-library-credentials</artifactId>
55*af546375SCole Faust        <version>${project.version}</version>
56*af546375SCole Faust      </dependency>
57*af546375SCole Faust      <dependency>
58*af546375SCole Faust        <groupId>com.google.auth</groupId>
59*af546375SCole Faust        <artifactId>google-auth-library-oauth2-http</artifactId>
60*af546375SCole Faust        <version>${project.version}</version>
61*af546375SCole Faust      </dependency>
62*af546375SCole Faust      <dependency>
63*af546375SCole Faust        <groupId>com.google.auth</groupId>
64*af546375SCole Faust        <artifactId>google-auth-library-appengine</artifactId>
65*af546375SCole Faust        <version>${project.version}</version>
66*af546375SCole Faust      </dependency>
67*af546375SCole Faust    </dependencies>
68*af546375SCole Faust  </dependencyManagement>
69*af546375SCole Faust
70*af546375SCole Faust  <build>
71*af546375SCole Faust    <plugins>
72*af546375SCole Faust      <plugin>
73*af546375SCole Faust        <groupId>org.sonatype.plugins</groupId>
74*af546375SCole Faust        <artifactId>nexus-staging-maven-plugin</artifactId>
75*af546375SCole Faust        <version>1.6.13</version>
76*af546375SCole Faust        <extensions>true</extensions>
77*af546375SCole Faust        <configuration>
78*af546375SCole Faust          <serverId>ossrh</serverId>
79*af546375SCole Faust          <nexusUrl>https://google.oss.sonatype.org/</nexusUrl>
80*af546375SCole Faust          <autoReleaseAfterClose>false</autoReleaseAfterClose>
81*af546375SCole Faust        </configuration>
82*af546375SCole Faust      </plugin>
83*af546375SCole Faust      <plugin>
84*af546375SCole Faust        <groupId>org.apache.maven.plugins</groupId>
85*af546375SCole Faust        <artifactId>maven-javadoc-plugin</artifactId>
86*af546375SCole Faust        <version>3.6.0</version>
87*af546375SCole Faust        <configuration>
88*af546375SCole Faust          <skip>true</skip>
89*af546375SCole Faust        </configuration>
90*af546375SCole Faust      </plugin>
91*af546375SCole Faust      <plugin>
92*af546375SCole Faust        <groupId>org.apache.maven.plugins</groupId>
93*af546375SCole Faust        <artifactId>maven-site-plugin</artifactId>
94*af546375SCole Faust        <version>3.12.1</version>
95*af546375SCole Faust        <configuration>
96*af546375SCole Faust          <skip>true</skip>
97*af546375SCole Faust        </configuration>
98*af546375SCole Faust      </plugin>
99*af546375SCole Faust
100*af546375SCole Faust      <plugin>
101*af546375SCole Faust        <groupId>com.coveo</groupId>
102*af546375SCole Faust        <artifactId>fmt-maven-plugin</artifactId>
103*af546375SCole Faust        <version>2.13</version>
104*af546375SCole Faust        <configuration>
105*af546375SCole Faust          <verbose>true</verbose>
106*af546375SCole Faust        </configuration>
107*af546375SCole Faust      </plugin>
108*af546375SCole Faust    </plugins>
109*af546375SCole Faust  </build>
110*af546375SCole Faust
111*af546375SCole Faust  <profiles>
112*af546375SCole Faust    <profile>
113*af546375SCole Faust      <id>release-sign-artifacts</id>
114*af546375SCole Faust      <activation>
115*af546375SCole Faust        <property>
116*af546375SCole Faust          <name>performRelease</name>
117*af546375SCole Faust          <value>true</value>
118*af546375SCole Faust        </property>
119*af546375SCole Faust      </activation>
120*af546375SCole Faust      <build>
121*af546375SCole Faust        <plugins>
122*af546375SCole Faust          <plugin>
123*af546375SCole Faust            <groupId>org.apache.maven.plugins</groupId>
124*af546375SCole Faust            <artifactId>maven-gpg-plugin</artifactId>
125*af546375SCole Faust            <version>3.1.0</version>
126*af546375SCole Faust            <executions>
127*af546375SCole Faust              <execution>
128*af546375SCole Faust                <id>sign-artifacts</id>
129*af546375SCole Faust                <phase>verify</phase>
130*af546375SCole Faust                <goals>
131*af546375SCole Faust                  <goal>sign</goal>
132*af546375SCole Faust                </goals>
133*af546375SCole Faust                <configuration>
134*af546375SCole Faust                  <gpgArguments>
135*af546375SCole Faust                    <arg>--pinentry-mode</arg>
136*af546375SCole Faust                    <arg>loopback</arg>
137*af546375SCole Faust                  </gpgArguments>
138*af546375SCole Faust                </configuration>
139*af546375SCole Faust              </execution>
140*af546375SCole Faust            </executions>
141*af546375SCole Faust          </plugin>
142*af546375SCole Faust        </plugins>
143*af546375SCole Faust      </build>
144*af546375SCole Faust    </profile>
145*af546375SCole Faust  </profiles>
146*af546375SCole Faust</project>
147