|
16 | 16 | limitations under the License.
|
17 | 17 | -->
|
18 | 18 |
|
| 19 | +<!-- [START functions_example_pom] --> |
19 | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
20 | 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
21 | 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
22 | 23 | <modelVersion>4.0.0</modelVersion>
|
23 | 24 |
|
24 | 25 | <groupId>com.example.cloud.functions</groupId>
|
25 | 26 | <artifactId>functions-hello-world</artifactId>
|
| 27 | + <!-- [END functions_example_pom] --> |
26 | 28 |
|
27 | 29 | <parent>
|
28 | 30 | <groupId>com.google.cloud.samples</groupId>
|
29 | 31 | <artifactId>shared-configuration</artifactId>
|
30 | 32 | <version>1.0.17</version>
|
31 | 33 | </parent>
|
32 | 34 |
|
| 35 | + <!-- [START functions_example_pom] --> |
33 | 36 | <properties>
|
| 37 | + <!-- [END functions_example_pom] --> |
34 | 38 | <powermock.version>2.0.7</powermock.version>
|
| 39 | + <!-- [START functions_example_pom] --> |
35 | 40 | <maven.compiler.target>11</maven.compiler.target>
|
36 | 41 | <maven.compiler.source>11</maven.compiler.source>
|
37 | 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
45 | 50 | <version>1.0.1</version>
|
46 | 51 | <scope>provided</scope>
|
47 | 52 | </dependency>
|
| 53 | + <!-- [END functions_example_pom] --> |
48 | 54 |
|
49 | 55 | <!-- The following dependencies are only required for testing -->
|
50 | 56 | <dependency>
|
|
97 | 103 | </profile>
|
98 | 104 | </profiles>
|
99 | 105 |
|
| 106 | + <!-- [START functions_example_pom] --> |
100 | 107 | <build>
|
101 | 108 | <plugins>
|
102 | 109 | <plugin>
|
|
116 | 123 | <functionTarget>functions.HelloWorld</functionTarget>
|
117 | 124 | </configuration>
|
118 | 125 | </plugin>
|
| 126 | + <!-- [END functions_example_pom] --> |
119 | 127 | <plugin>
|
120 | 128 | <groupId>org.apache.maven.plugins</groupId>
|
121 | 129 | <artifactId>maven-surefire-plugin</artifactId>
|
|
131 | 139 | <trimStackTrace>false</trimStackTrace>
|
132 | 140 | </configuration>
|
133 | 141 | </plugin>
|
| 142 | + <!-- [START functions_example_pom] --> |
134 | 143 | </plugins>
|
135 | 144 | </build>
|
136 | 145 | </project>
|
| 146 | +<!-- [END functions_example_pom] --> |
0 commit comments