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