xref: /aosp_15_r20/external/google-auth-library-java/appengine/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
5*af546375SCole Faust  <parent>
6*af546375SCole Faust    <groupId>com.google.auth</groupId>
7*af546375SCole Faust    <artifactId>google-auth-library-parent</artifactId>
8*af546375SCole Faust    <version>1.23.0</version><!-- {x-version-update:google-auth-library-parent:current} -->
9*af546375SCole Faust    <relativePath>../pom.xml</relativePath>
10*af546375SCole Faust  </parent>
11*af546375SCole Faust
12*af546375SCole Faust  <artifactId>google-auth-library-appengine</artifactId>
13*af546375SCole Faust  <name>Google Auth Library for Java - Google App Engine</name>
14*af546375SCole Faust
15*af546375SCole Faust  <distributionManagement>
16*af546375SCole Faust    <snapshotRepository>
17*af546375SCole Faust      <id>ossrh</id>
18*af546375SCole Faust      <url>https://google.oss.sonatype.org/content/repositories/snapshots</url>
19*af546375SCole Faust    </snapshotRepository>
20*af546375SCole Faust  </distributionManagement>
21*af546375SCole Faust
22*af546375SCole Faust  <build>
23*af546375SCole Faust    <sourceDirectory>java</sourceDirectory>
24*af546375SCole Faust    <testSourceDirectory>javatests</testSourceDirectory>
25*af546375SCole Faust    <plugins>
26*af546375SCole Faust      <plugin>
27*af546375SCole Faust        <groupId>org.sonatype.plugins</groupId>
28*af546375SCole Faust        <artifactId>nexus-staging-maven-plugin</artifactId>
29*af546375SCole Faust      </plugin>
30*af546375SCole Faust      <plugin>
31*af546375SCole Faust        <groupId>org.apache.maven.plugins</groupId>
32*af546375SCole Faust        <artifactId>maven-source-plugin</artifactId>
33*af546375SCole Faust      </plugin>
34*af546375SCole Faust      <plugin>
35*af546375SCole Faust        <groupId>org.apache.maven.plugins</groupId>
36*af546375SCole Faust        <artifactId>maven-javadoc-plugin</artifactId>
37*af546375SCole Faust      </plugin>
38*af546375SCole Faust      <plugin>
39*af546375SCole Faust        <groupId>org.apache.maven.plugins</groupId>
40*af546375SCole Faust        <artifactId>maven-jar-plugin</artifactId>
41*af546375SCole Faust        <configuration>
42*af546375SCole Faust          <archive>
43*af546375SCole Faust            <manifestEntries>
44*af546375SCole Faust              <Automatic-Module-Name>com.google.auth.appengine</Automatic-Module-Name>
45*af546375SCole Faust            </manifestEntries>
46*af546375SCole Faust          </archive>
47*af546375SCole Faust        </configuration>
48*af546375SCole Faust      </plugin>
49*af546375SCole Faust    </plugins>
50*af546375SCole Faust  </build>
51*af546375SCole Faust
52*af546375SCole Faust  <dependencies>
53*af546375SCole Faust    <dependency>
54*af546375SCole Faust      <groupId>com.google.auth</groupId>
55*af546375SCole Faust      <artifactId>google-auth-library-credentials</artifactId>
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    </dependency>
61*af546375SCole Faust    <dependency>
62*af546375SCole Faust      <groupId>com.google.appengine</groupId>
63*af546375SCole Faust      <artifactId>appengine-api-1.0-sdk</artifactId>
64*af546375SCole Faust      <scope>provided</scope>
65*af546375SCole Faust    </dependency>
66*af546375SCole Faust    <dependency>
67*af546375SCole Faust      <groupId>com.google.guava</groupId>
68*af546375SCole Faust      <artifactId>guava</artifactId>
69*af546375SCole Faust    </dependency>
70*af546375SCole Faust    <dependency>
71*af546375SCole Faust      <groupId>junit</groupId>
72*af546375SCole Faust      <artifactId>junit</artifactId>
73*af546375SCole Faust      <scope>test</scope>
74*af546375SCole Faust    </dependency>
75*af546375SCole Faust    <dependency>
76*af546375SCole Faust      <groupId>com.google.auth</groupId>
77*af546375SCole Faust      <artifactId>google-auth-library-oauth2-http</artifactId>
78*af546375SCole Faust      <scope>test</scope>
79*af546375SCole Faust      <type>test-jar</type>
80*af546375SCole Faust      <classifier>testlib</classifier>
81*af546375SCole Faust    </dependency>
82*af546375SCole Faust    <dependency>
83*af546375SCole Faust       <groupId>com.google.errorprone</groupId>
84*af546375SCole Faust       <artifactId>error_prone_annotations</artifactId>
85*af546375SCole Faust       <scope>compile</scope>
86*af546375SCole Faust    </dependency>
87*af546375SCole Faust  </dependencies>
88*af546375SCole Faust</project>
89