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 <parent> 5*af546375SCole Faust <groupId>com.google.auth</groupId> 6*af546375SCole Faust <artifactId>google-auth-library-parent</artifactId> 7*af546375SCole Faust <version>1.23.0</version><!-- {x-version-update:google-auth-library-parent:current} --> 8*af546375SCole Faust <relativePath>../pom.xml</relativePath> 9*af546375SCole Faust </parent> 10*af546375SCole Faust 11*af546375SCole Faust <artifactId>google-auth-library-credentials</artifactId> 12*af546375SCole Faust <name>Google Auth Library for Java - Credentials</name> 13*af546375SCole Faust 14*af546375SCole Faust <distributionManagement> 15*af546375SCole Faust <snapshotRepository> 16*af546375SCole Faust <id>ossrh</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 <build> 22*af546375SCole Faust <sourceDirectory>java</sourceDirectory> 23*af546375SCole Faust <testSourceDirectory>javatests</testSourceDirectory> 24*af546375SCole Faust <plugins> 25*af546375SCole Faust <plugin> 26*af546375SCole Faust <groupId>org.sonatype.plugins</groupId> 27*af546375SCole Faust <artifactId>nexus-staging-maven-plugin</artifactId> 28*af546375SCole Faust </plugin> 29*af546375SCole Faust <plugin> 30*af546375SCole Faust <groupId>org.apache.maven.plugins</groupId> 31*af546375SCole Faust <artifactId>maven-source-plugin</artifactId> 32*af546375SCole Faust </plugin> 33*af546375SCole Faust <plugin> 34*af546375SCole Faust <groupId>org.apache.maven.plugins</groupId> 35*af546375SCole Faust <artifactId>maven-javadoc-plugin</artifactId> 36*af546375SCole Faust </plugin> 37*af546375SCole Faust <plugin> 38*af546375SCole Faust <groupId>org.apache.maven.plugins</groupId> 39*af546375SCole Faust <artifactId>maven-jar-plugin</artifactId> 40*af546375SCole Faust <configuration> 41*af546375SCole Faust <archive> 42*af546375SCole Faust <manifestEntries> 43*af546375SCole Faust <Automatic-Module-Name>com.google.auth</Automatic-Module-Name> 44*af546375SCole Faust </manifestEntries> 45*af546375SCole Faust </archive> 46*af546375SCole Faust </configuration> 47*af546375SCole Faust </plugin> 48*af546375SCole Faust </plugins> 49*af546375SCole Faust </build> 50*af546375SCole Faust 51*af546375SCole Faust <dependencies> 52*af546375SCole Faust <dependency> 53*af546375SCole Faust <groupId>junit</groupId> 54*af546375SCole Faust <artifactId>junit</artifactId> 55*af546375SCole Faust <scope>test</scope> 56*af546375SCole Faust </dependency> 57*af546375SCole Faust </dependencies> 58*af546375SCole Faust 59*af546375SCole Faust</project> 60