|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 6 | + <parent> |
| 7 | + <artifactId>java-cloud-bom-root</artifactId> |
| 8 | + <groupId>com.google.cloud</groupId> |
| 9 | + <version>0.1.0</version> |
| 10 | + </parent> |
| 11 | + <modelVersion>4.0.0</modelVersion> |
| 12 | + |
| 13 | + <artifactId>release-note-generation</artifactId> |
| 14 | + |
| 15 | + <name>Release Note Generation for Cloud SDK for Java</name> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 20 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>com.google.cloud.tools</groupId> |
| 26 | + <artifactId>dependencies</artifactId> |
| 27 | + <version>1.5.13</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>junit</groupId> |
| 31 | + <artifactId>junit</artifactId> |
| 32 | + <version>4.11</version> |
| 33 | + <scope>test</scope> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>com.google.truth</groupId> |
| 37 | + <artifactId>truth</artifactId> |
| 38 | + <version>1.1.3</version> |
| 39 | + <scope>test</scope> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.codehaus.mojo</groupId> |
| 47 | + <artifactId>exec-maven-plugin</artifactId> |
| 48 | + <configuration> |
| 49 | + <skip>false</skip> |
| 50 | + <mainClass>com.google.cloud.ReleaseNoteGeneration</mainClass> |
| 51 | + </configuration> |
| 52 | + </plugin> |
| 53 | + </plugins> |
| 54 | + </build> |
| 55 | +</project> |
0 commit comments