mcp-jdbc

  • kubernetes
<?xml version="1.0" encoding="UTF-8"?> <!--suppress MavenModelInspection --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.quarkus.mcp.servers</groupId> <artifactId>mcp-server-kubernetes</artifactId> <parent> <groupId>io.quarkiverse.mcp.servers</groupId> <artifactId>mcp-servers-parent</artifactId> <version>999-SNAPSHOT</version> </parent> <properties> <skipITs>false</skipITs> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>${quarkus.platform.group-id}</groupId> <artifactId>${quarkus.platform.artifact-id}</artifactId> <version>${quarkus.platform.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.quarkus.mcp.servers</groupId> <artifactId>mcp-server-shared</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-kubernetes-client</artifactId> </dependency> <!-- Add only those dependencies that are actually needed to minimize the native image size --> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client-api</artifactId> <exclusions> <exclusion> <groupId>io.fabric8</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-core</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-admissionregistration</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-apps</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-autoscaling</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-batch</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-certificates</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-coordination</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-extensions</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-model-node</artifactId> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>openshift-model</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-mcp</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-server-mock</artifactId> <scope>test</scope> </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> <goal>native-image-agent</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler-plugin.version}</version> <configuration> <parameters>true</parameters> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire-plugin.version}</version> <configuration> <systemPropertyVariables> <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${surefire-plugin.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <systemPropertyVariables> <quarkus.native.enabled>${quarkus.native.enabled}</quarkus.native.enabled> <java.jar.path>${project.build.directory}/${project.build.finalName}.jar</java.jar.path> <native.image.path>${project.build.directory}/${quarkus.package.output-name}</native.image.path> <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>