mule4-inference-connector
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mulesoft-ai-chain-project</groupId> <artifactId>mule4-inference-connector</artifactId> <version>0.2.0</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-inference-connector</artifactId> <version>0.2.0</version> <packaging>mule-extension</packaging> <name>MuleSoft Inference Connector - Mule 4</name> <description>MuleSoft Inference Connector for integrating LLM Inference APIs into MuleSoft.</description> <url>https://mac-project.ai/docs/mac-inference/connector-overview</url> <scm> <connection>scm:git:git://github.com/MuleSoft-AI-Chain-Project/mule-inference-connector.git</connection> <developerConnection>scm:git:ssh://github.com:MuleSoft-AI-Chain-Project/mule-inference-connector.git</developerConnection> <url>https://github.com/MuleSoft-AI-Chain-Project/mule-inference-connector/tree/master</url> </scm> <parent> <groupId>org.mule.extensions</groupId> <artifactId>mule-modules-parent</artifactId> <version>1.1.3</version> </parent> <properties> <muleJavaEeBomVersion>4.6.0</muleJavaEeBomVersion> <slf4jApi.version>2.0.7</slf4jApi.version> <munit.extensions.maven.plugin.version>1.2.0</munit.extensions.maven.plugin.version> </properties> <build> <plugins> <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 Inference Connector Mule 4 Deployment</deploymentName> </configuration> </plugin> <plugin> <groupId>com.mulesoft.munit</groupId> <artifactId>munit-extensions-maven-plugin</artifactId> <version>${munit.extensions.maven.plugin.version}</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>test</goal> </goals> <phase>integration-test</phase> </execution> </executions> </plugin> </plugins> </build> <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>org.mule.sdk</groupId> <artifactId>mule-sdk-api</artifactId> <version>0.9.0-rc1</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20240303</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4jApi.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.17.0</version> </dependency> </dependencies> <repositories> <repository> <id>anypoint-exchange-v3</id> <name>Anypoint Exchange V3</name> <url>https://maven.eu1.anypoint.mulesoft.com/api/v3/maven</url> <layout>default</layout> </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> <distributionManagement> <snapshotRepository> <id>exchange-repository</id> <name>Exchange Repository</name> <url>https://maven.anypoint.mulesoft.com/api/v1/organizations/9c7c42b3-1b21-4ec1-9183-047ec0921663/maven</url> <layout>default</layout> </snapshotRepository> <repository> <id>exchange-repository</id> <name>Exchange Repository</name> <url>https://maven.anypoint.mulesoft.com/api/v1/organizations/9c7c42b3-1b21-4ec1-9183-047ec0921663/maven</url> <layout>default</layout> </repository> </distributionManagement> </project>