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.functions.invoker</groupId >
5+ <artifactId >conformance</artifactId >
6+ <version >0.0.0-SNAPSHOT</version >
7+
8+ <name >GCF Conformance Tests</name >
9+ <description >
10+ A GCF project used to validate conformance to the Functions Framework contract
11+ using the Functions Framework Conformance tools.
12+ </description >
13+ <url >https://github.com/GoogleCloudPlatform/functions-framework-conformance</url >
14+
15+ <properties >
16+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17+ <maven .compiler.source>11</maven .compiler.source>
18+ <maven .compiler.target>11</maven .compiler.target>
19+ </properties >
20+ <repositories >
21+ <repository >
22+ <id >conformance</id >
23+ <url >file:./artifacts</url ></repository >
24+ </repositories >
25+ <dependencies >
26+ <dependency >
27+ <groupId >com.google.cloud.functions</groupId >
28+ <artifactId >functions-framework-api</artifactId >
29+ <version >0.0.0-SNAPSHOT</version >
30+ </dependency >
31+ <dependency >
32+ <groupId >com.google.cloud.functions.invoker</groupId >
33+ <artifactId >java-function-invoker</artifactId >
34+ <version >0.0.0-SNAPSHOT</version >
35+ </dependency >
36+ <dependency >
37+ <groupId >com.google.code.gson</groupId >
38+ <artifactId >gson</artifactId >
39+ <version >2.8.9</version >
40+ </dependency >
41+ <dependency >
42+ <groupId >io.cloudevents</groupId >
43+ <artifactId >cloudevents-core</artifactId >
44+ <version >2.2.0</version >
45+ </dependency >
46+ <dependency >
47+ <groupId >io.cloudevents</groupId >
48+ <artifactId >cloudevents-json-jackson</artifactId >
49+ <version >2.2.0</version >
50+ </dependency >
51+ </dependencies >
52+ </project >
0 commit comments