|
| 1 | +exports['PomXml updateContent preserves trailing newlines 1'] = ` |
| 2 | +<?xml version="1.0" encoding="UTF-8"?> |
| 3 | +<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"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | +
|
| 6 | + <parent> |
| 7 | + <groupId>com.google.auth</groupId> |
| 8 | + <artifactId>google-auth-library-parent</artifactId> |
| 9 | + <version>0.16.2</version><!-- {x-version-update:google-auth-library-parent:current} --> |
| 10 | + <relativePath>../pom.xml</relativePath> |
| 11 | + </parent> |
| 12 | +
|
| 13 | + <groupId>com.google.auth</groupId> |
| 14 | + <artifactId>google-auth-library-appengine</artifactId> |
| 15 | + <version>2.3.4</version><!-- {x-version-update:google-auth-library-parent:current} --> |
| 16 | + <name>Google Auth Library for Java - Google App Engine</name> |
| 17 | +
|
| 18 | + <distributionManagement> |
| 19 | + <snapshotRepository> |
| 20 | + <id>ossrh</id> |
| 21 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 22 | + </snapshotRepository> |
| 23 | + </distributionManagement> |
| 24 | +
|
| 25 | + <build> |
| 26 | + <sourceDirectory>java</sourceDirectory> |
| 27 | + <testSourceDirectory>javatests</testSourceDirectory> |
| 28 | + <plugins> |
| 29 | + <plugin> |
| 30 | + <groupId>org.sonatype.plugins</groupId> |
| 31 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 32 | + </plugin> |
| 33 | + <plugin> |
| 34 | + <groupId>org.apache.maven.plugins</groupId> |
| 35 | + <artifactId>maven-source-plugin</artifactId> |
| 36 | + </plugin> |
| 37 | + <plugin> |
| 38 | + <groupId>org.apache.maven.plugins</groupId> |
| 39 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 40 | + </plugin> |
| 41 | + </plugins> |
| 42 | + </build> |
| 43 | +
|
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <groupId>com.google.auth</groupId> |
| 47 | + <artifactId>google-auth-library-credentials</artifactId> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>com.google.auth</groupId> |
| 51 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>com.google.http-client</groupId> |
| 55 | + <artifactId>google-http-client</artifactId> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.google.http-client</groupId> |
| 59 | + <artifactId>google-http-client-jackson2</artifactId> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.google.appengine</groupId> |
| 63 | + <artifactId>appengine-api-1.0-sdk</artifactId> |
| 64 | + <scope>provided</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.guava</groupId> |
| 68 | + <artifactId>guava</artifactId> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>junit</groupId> |
| 72 | + <artifactId>junit</artifactId> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>com.google.auth</groupId> |
| 77 | + <artifactId>google-auth-library-oauth2-http</artifactId> |
| 78 | + <type>test-jar</type> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + </dependencies> |
| 82 | +</project> |
| 83 | +
|
| 84 | +` |
| 85 | + |
1 | 86 | exports['PomXml updateContent updates dependencies 1'] = ` |
2 | 87 | <?xml version="1.0" encoding="UTF-8"?> |
3 | 88 | <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"> |
@@ -67,6 +152,7 @@ exports['PomXml updateContent updates project.parent.version 1'] = ` |
67 | 152 |
|
68 | 153 | <artifactId>google-auth-library-appengine</artifactId> |
69 | 154 | </project> |
| 155 | +
|
70 | 156 | ` |
71 | 157 |
|
72 | 158 | exports['PomXml updateContent updates project.version 1'] = ` |
|
0 commit comments