Wanaku MCP Server

Official
<?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> <groupId>ai.wanaku</groupId> <artifactId>providers</artifactId> <version>0.0.2-SNAPSHOT</version> </parent> <artifactId>wanaku-provider-s3</artifactId> <name>Wanaku :: Services :: Providers :: D3</name> <dependencies> <dependency> <groupId>ai.wanaku</groupId> <artifactId>core-exchange</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ai.wanaku</groupId> <artifactId>core-services</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-grpc</artifactId> </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-core</artifactId> </dependency> <!-- For building containers --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-container-image-jib</artifactId> </dependency> <!-- Tool dependencies go here --> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-s3</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>${quarkus.platform.group-id}</groupId> <artifactId>quarkus-maven-plugin</artifactId> <version>${quarkus.platform.version}</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>build</goal> <goal>generate-code</goal> <goal>generate-code-tests</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>native</id> <activation> <property> <name>native</name> </property> </activation> <properties> <skipITs>false</skipITs> <quarkus.native.enabled>true</quarkus.native.enabled> <assembly.descriptor>src/main/assembly/assembly-native.xml</assembly.descriptor> <dist.final.name>${project.artifactId}-${project.version}-${os.detected.classifier}</dist.final.name> </properties> </profile> <profile> <id>dist</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-assembly-plugin.version}</version> <configuration> <attach>false</attach> <appendAssemblyId>false</appendAssemblyId> <finalName>${dist.final.name}</finalName> <outputDirectory>${distribution.directory}</outputDirectory> <workDirectory>${project.build.directory}/assembly/work</workDirectory> <descriptors> <descriptor>${assembly.descriptor}</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-distribution</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>dist-windows</id> <activation> <os> <family>windows</family> </os> </activation> <properties> <executable-suffix>.exe</executable-suffix> </properties> </profile> </profiles> </project>