Maciej Główka f93f1d2c1e BAEL-5957: Creaet prime number finder for Kubernetes heap dump (#13190)
* BAEL-5957: Creaet prime number finder for Kubernetes heap dump

* add dockerfile, kubernetes deploy file

* use baeldung namespace

* add saving primes to a list
2023-03-14 20:09:03 +00:00

22 lines
773 B
XML

<?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>
<artifactId>kubernetes-modules</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modules>
<module>k8s-intro</module>
<module>k8s-admission-controller</module>
<!-- <module>kubernetes-spring</module> --> <!-- JDK-11 Module -->
<module>k8s-java-heap-dump</module>
</modules>
</project>