java-function-invoker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.cloud.functions.invoker</groupId> <artifactId>java-function-invoker</artifactId> <version>1.4.1</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>java-function-invoker-parent</artifactId> <groupId>com.google.cloud.functions.invoker</groupId> <version>1.4.1</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.google.cloud.functions.invoker</groupId> <artifactId>java-function-invoker</artifactId> <name>GCF Java Invoker</name> <version>1.4.1</version> <description>Application that invokes a GCF Java function. This application is a complete HTTP server that interprets incoming HTTP requests appropriately and forwards them to the function code.</description> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/GoogleCloudPlatform/functions-framework-java.git</connection> <developerConnection>scm:git:git@github.com:GoogleCloudPlatform/functions-framework-java.git</developerConnection> <url>https://github.com/GoogleCloudPlatform/functions-framework-java</url> </scm> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifest> <mainClass>com.google.cloud.functions.invoker.runner.Invoker</mainClass> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.ryanharter.auto.value</groupId> <artifactId>auto-value-gson</artifactId> <version>1.3.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.ryanharter.auto.value</groupId> <artifactId>auto-value-gson-annotations</artifactId> <version>0.8.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.auto.value</groupId> <artifactId>auto-value</artifactId> <version>1.11.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.auto.value</groupId> <artifactId>auto-value-annotations</artifactId> <version>1.11.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.cloud.functions.invoker</groupId> <artifactId>java-function-invoker-testfunction</artifactId> <version>1.4.1</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.16.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>1.4.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jspecify</artifactId> <groupId>org.jspecify</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.truth.extensions</groupId> <artifactId>truth-java8-extension</artifactId> <version>1.4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <version>9.4.57.v20241219</version> <scope>test</scope> </dependency> </dependencies> <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.jupiter.version>5.3.2</junit.jupiter.version> <cloudevents.sdk.version>4.0.1</cloudevents.sdk.version> </properties> </project>