invoker/conformance/buildpack_pom.xml (50 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.google.cloud.functions.invoker</groupId> <artifactId>conformance</artifactId> <version>0.0.0-SNAPSHOT</version> <name>GCF Conformance Tests</name> <description> A GCF project used to validate conformance to the Functions Framework contract using the Functions Framework Conformance tools. </description> <url>https://github.com/GoogleCloudPlatform/functions-framework-conformance</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> <repositories> <repository> <id>conformance</id> <url>file:./artifacts</url></repository> </repositories> <dependencies> <dependency> <groupId>com.google.cloud.functions</groupId> <artifactId>functions-framework-api</artifactId> <version>FRAMEWORK-API-VERSION</version> </dependency> <dependency> <groupId>com.google.cloud.functions.invoker</groupId> <artifactId>java-function-invoker</artifactId> <version>INVOKER-VERSION</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.9</version> </dependency> <dependency> <groupId>io.cloudevents</groupId> <artifactId>cloudevents-core</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>io.cloudevents</groupId> <artifactId>cloudevents-json-jackson</artifactId> <version>2.2.0</version> </dependency> </dependencies> </project>