forked from GoogleCloudPlatform/functions-framework-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
50 lines (45 loc) · 1.89 KB
/
pom.xml
File metadata and controls
50 lines (45 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>com.google.cloud.functions.invoker</groupId>
<artifactId>java-function-invoker-parent</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GCF Java Invoker Parent</name>
<description>
Parent POM for the GCF Java Invoker. The project is structured like this so
that we can have modules that build jar files for use in tests.
</description>
<url>https://github.com/GoogleCloudPlatform/functions-framework-java/tree/master/invoker</url>
<scm>
<url>http://github.com/GoogleCloudPlatform/functions-framework-java</url>
<connection>scm:git:git://github.com/GoogleCloudPlatform/functions-framework-java.git</connection>
<developerConnection>scm:git:ssh://git@github.com/GoogleCloudPlatform/functions-framework-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<modules>
<module>core</module>
<module>testfunction</module>
<module>function-maven-plugin</module>
<module>conformance</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud.functions</groupId>
<artifactId>functions-framework-api</artifactId>
<version>1.0.4</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>