mule4-agentforce-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mulesoft-ai-chain-project</groupId> <artifactId>mule4-agentforce-connector</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <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>io.github.mulesoft-ai-chain-project</groupId> <artifactId>mule4-agentforce-connector</artifactId> <version>1.0.1</version> <packaging>mule-extension</packaging> <name>Agentforce Connector - Mule 4</name> <description>Bring the power of Agentforce to any application or process</description> <url>https://mac-project.ai/docs/agentforce/connector-overview</url> <scm> <connection>scm:git:git://github.com/MuleSoft-AI-Chain-Project/mule-agentforce-connector.git</connection> <developerConnection>scm:git:ssh://github.com:MuleSoft-AI-Chain-Project/mule-agentforce-connector.git</developerConnection> <url>https://github.com/MuleSoft-AI-Chain-Project/mule-agentforce-connector/tree/master</url> </scm> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Amir Khan</name> <email>amir.khan@mulesoft.com</email> <organization>Salesforce</organization> <organizationUrl>https://www.mulesoft.com</organizationUrl> </developer> <developer> <name>Ayush Agarwal</name> <email>ayushagarwal@salesforce.com</email> <organization>Salesforce</organization> <organizationUrl>https://www.mulesoft.com</organizationUrl> </developer> <developer> <name>Vishwas Tyagi</name> <email>vishwas.tyagi@salesforce.com</email> <organization>Salesforce</organization> <organizationUrl>https://www.salesforce.com</organizationUrl> </developer> </developers> <parent> <groupId>org.mule.extensions</groupId> <artifactId>mule-modules-parent</artifactId> <version>1.6.9</version> </parent> <properties> <muleJavaEeBomVersion>4.6.9</muleJavaEeBomVersion> <skipVerifications>false</skipVerifications> <json.version>20240303</json.version> <formatterConfigPath>formatter.xml</formatterConfigPath> <javaFormatter.plugin.version>2.14.0</javaFormatter.plugin.version> <formatterGoal>validate</formatterGoal> <slf4jApi.version>2.0.7</slf4jApi.version> <mule.sdk.api.version>0.10.3</mule.sdk.api.version> <mapdb.version>3.1.0</mapdb.version> <jacoco.version>0.8.12</jacoco.version> <munit.extensions.maven.plugin.version>1.4.0</munit.extensions.maven.plugin.version> <maven.surefire.version>2.22.2</maven.surefire.version> <munit.version>3.3.1</munit.version> <mtf.tools.version>1.2.0</mtf.tools.version> <runtimeProduct>MULE_EE</runtimeProduct> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.mule</groupId> <artifactId>mule-javaee-runtime-bom</artifactId> <version>${muleJavaEeBomVersion}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.mulesoft.connectors</groupId> <artifactId>mule-connector-commons</artifactId> <version>2.1.1</version> </dependency> <dependency> <groupId>org.mule.sdk</groupId> <artifactId>mule-sdk-api</artifactId> <version>${mule.sdk.api.version}</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>${json.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.17.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.12.4</version> <scope>test</scope> <exclusions> <exclusion> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>3.12.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>3.12.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.connectors</groupId> <artifactId>mule-file-connector</artifactId> <version>1.5.2</version> <classifier>mule-plugin</classifier> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jdeps-plugin</artifactId> <version>3.1.2</version> <executions> <execution> <goals> <goal>jdkinternals</goal> <!-- verify main classes --> <goal>test-jdkinternals</goal> <!-- verify test classes --> </goals> </execution> </executions> <configuration> <failOnWarning>true</failOnWarning> </configuration> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>${javaFormatter.plugin.version}</version> <configuration> <compilerCompliance>${jdk.version}</compilerCompliance> <compilerSource>${jdk.version}</compilerSource> <compilerTargetPlatform>${jdk.version}</compilerTargetPlatform> <configFile>${basedir}/${formatterConfigPath}</configFile> <configJsFile>${basedir}/${formatterConfigPath}</configJsFile> <aggregator>false</aggregator> <executionRoot>true</executionRoot> </configuration> <executions> <execution> <id>apply-format</id> <phase>compile</phase> <goals> <goal>${formatterGoal}</goal> </goals> <configuration> <skipFormatting>${skipVerifications}</skipFormatting> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mulesoft.munit</groupId> <artifactId>munit-extensions-maven-plugin</artifactId> <version>${munit.extensions.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <argLines> <argLine> -javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco.exec,includes=com/mulesoft/connector/agentforce/** </argLine> </argLines> <sharedLibraries> <sharedLibrary> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </sharedLibrary> </sharedLibraries> </configuration> <dependencies> <dependency> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> </dependency> <dependency> <groupId>com.mulesoft.munit</groupId> <artifactId>mtf-tools</artifactId> <version>${mtf.tools.version}</version> <classifier>mule-plugin</classifier> </dependency> </dependencies> <executions> <execution> <goals> <goal>test</goal> </goals> <phase>integration-test</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> <argLine> -javaagent:${settings.localRepository}/org/jacoco/org.jacoco.agent/${jacoco.version}/org.jacoco.agent-${jacoco.version}-runtime.jar=destfile=${session.executionRootDirectory}/target/jacoco.exec </argLine> </configuration> <dependencies> <dependency> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>jacoco-initialize</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>jacoco-site</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <checksums>all</checksums> <deploymentName>MuleSoft Agentforce Connector Mule 4 Deployment</deploymentName> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>mule-releases</id> <name>Nexus Public Releases</name> <url>https://repository-master.mulesoft.org/nexus/content/repositories/releases/</url> </repository> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>mulesoft-releases</id> <name>mulesoft release repository</name> <layout>default</layout> <url>https://repository.mulesoft.org/releases/</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>