• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/xsd/maven-4.0.0.xsd">
3  <modelVersion>4.0.0</modelVersion>
4  <groupId>com.google.cloud</groupId>
5  <artifactId>google-cloud-{{metadata['repo']['name']}}-samples</artifactId>
6  <version>0.0.1-SNAPSHOT</version><!-- This artifact should not be released -->
7  <packaging>pom</packaging>
8  <name>Google {{metadata['repo']['name_pretty']}} Samples Parent</name>
9  <url>https://github.com/{{metadata['repo']['repo']}}</url>
10  <description>
11    Java idiomatic client for Google Cloud Platform services.
12  </description>
13
14  <!--
15    The parent pom defines common style checks and testing strategies for our samples.
16    Removing or replacing it should not affect the execution of the samples in any way.
17  -->
18  <parent>
19    <groupId>com.google.cloud.samples</groupId>
20    <artifactId>shared-configuration</artifactId>
21    <version>1.2.0</version>
22  </parent>
23
24  <properties>
25    <maven.compiler.target>1.8</maven.compiler.target>
26    <maven.compiler.source>1.8</maven.compiler.source>
27    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28  </properties>
29
30  <modules>
31    <module>install-without-bom</module>
32    <module>snapshot</module>
33    <module>snippets</module>
34  </modules>
35
36  <build>
37    <plugins>
38      <plugin>
39        <groupId>org.apache.maven.plugins</groupId>
40        <artifactId>maven-deploy-plugin</artifactId>
41        <version>2.8.2</version>
42        <configuration>
43          <skip>true</skip>
44        </configuration>
45      </plugin>
46      <plugin>
47        <groupId>org.sonatype.plugins</groupId>
48        <artifactId>nexus-staging-maven-plugin</artifactId>
49        <version>1.6.13</version>
50        <configuration>
51          <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
52        </configuration>
53      </plugin>
54    </plugins>
55  </build>
56</project>
57