sf-fx-runtime-java-sdk-impl-v0
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.salesforce.functions</groupId> <artifactId>sf-fx-runtime-java-sdk-impl-v0</artifactId> <version>0.1.4-ea</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>sf-fx-runtime-java</artifactId> <groupId>com.salesforce.functions</groupId> <version>0.1.4-ea</version> </parent> <artifactId>sf-fx-runtime-java-sdk-impl-v0</artifactId> <dependencies> <dependency> <groupId>com.salesforce.functions</groupId> <artifactId>sf-fx-sdk-java</artifactId> <version>0.5.0-ea</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.cloudevents</groupId> <artifactId>cloudevents-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.salesforce.functions</groupId> <artifactId>sf-fx-runtime-java-cloudevent</artifactId> <version>${project.parent.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.13</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <optional>true</optional> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <version>2.27.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> </project>