bundlebee
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.yupiik</groupId> <artifactId>bundlebee</artifactId> <version>1.0.19</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2021-2022 - Yupiik SAS - https://www.yupiik.com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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.yupiik</groupId> <artifactId>bundlebee</artifactId> <version>1.0.19</version> <packaging>pom</packaging> <name>BundleBee</name> <description>A light Kubernetes package manager inheriting from Apache Maven infrastructure.</description> <url>https://github.com/yupiik/bundlebee</url> <organization> <name>Yupiik SAS</name> <url>https://www.yupiik.com</url> </organization> <inceptionYear>2021-2022</inceptionYear> <properties> <owb.version>2.0.27</owb.version> <xbean.version>4.21</xbean.version> <junit5.version>5.9.0</junit5.version> <arthur.version>1.0.5</arthur.version> <yupiik-logging.version>1.0.6</yupiik-logging.version> <m2.location>${settings.localRepository}</m2.location> </properties> <modules> <module>bundlebee-core</module> <module>bundlebee-documentation</module> <module>alveolus</module> <module>bundlebee-maven-plugin</module> <module>bundlebee-operator</module> <module>bundlebee-junit5</module> </modules> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.22</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.xbean</groupId> <artifactId>xbean-finder-shaded</artifactId> <version>${xbean.version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-json_1.1_spec</artifactId> <version>1.5</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jsonb_1.0_spec</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.apache.johnzon</groupId> <artifactId>johnzon-jsonb</artifactId> <version>1.2.18</version> </dependency> <dependency> <groupId>org.talend.sdk.component</groupId> <artifactId>component-runtime-http-junit</artifactId> <version>1.40.0</version> <scope>test</scope> </dependency> <dependency> <!-- for talend mock http server --> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.7.32</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.geronimo.arthur</groupId> <artifactId>arthur-maven-plugin</artifactId> <version>${arthur.version}</version> <configuration> <graalVersion>22.1.0</graalVersion> <attach>true</attach> <attachClassifier>${os.name}-${os.arch}</attachClassifier> <!-- Linux-amd64 --> <output>${project.build.directory}/${project.artifactId}</output> <buildStaticImage>false</buildStaticImage> <enableAllSecurityServices>false</enableAllSecurityServices> <allowIncompleteClasspath>false</allowIncompleteClasspath> <graalExtensions> <graalExtension>openwebbeans</graalExtension> </graalExtensions> <customOptions> <customOption>-Djava.util.logging.manager=io.yupiik.logging.jul.YupiikLogManager</customOption> <customOption>-Djava.net.preferIPv4Stack=true</customOption> <customOption>--enable-http</customOption> <customOption>--enable-https</customOption> <!-- to investigate what is in the native binaries/image(s) https://www.graalvm.org/dashboard/ <customOption>-H:DashboardDump=target/dashboard</customOption> <customOption>-H:+DashboardAll</customOption> --> </customOptions> <reflections> <reflection> <name>org.eclipse.microprofile.config.Config</name> <allPublicMethods>true</allPublicMethods> </reflection> </reflections> <extensionProperties> <!-- to keep reflection meta for jsonb models without listing them (manifest + kubeconfig) --> <extension.annotation.custom.annotations.properties> io.yupiik.bundlebee.core.configuration.Description:allDeclaredConstructors=true|allDeclaredMethods=true|allDeclaredFields=true, javax.json.bind.annotation.JsonbProperty:allDeclaredConstructors=true|allDeclaredMethods=true|allDeclaredFields=true </extension.annotation.custom.annotations.properties> </extensionProperties> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>4.9.10</version> <executions> <execution> <id>get-the-git-infos</id> <phase>initialize</phase> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <injectAllReactorProjects>true</injectAllReactorProjects> <generateGitPropertiesFile>false</generateGitPropertiesFile> <dateFormat>yyyy-MM-dd'T'HH:mm:ss'Z'</dateFormat> <dateFormatTimeZone>GMT</dateFormatTimeZone> <includeOnlyProperties> <includeOnlyProperty>^git.branch$</includeOnlyProperty> <includeOnlyProperty>^git.remote.origin.url$</includeOnlyProperty> <includeOnlyProperty>^git.commit.id$</includeOnlyProperty> <includeOnlyProperty>^git.commit.time$</includeOnlyProperty> </includeOnlyProperties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> <release>11</release> <encoding>UTF-8</encoding> <compilerArgs> <compilerArg>-parameters</compilerArg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> <configuration> <environmentVariables> <TEST_ENV_VAR>set</TEST_ENV_VAR> </environmentVariables> <systemPropertyVariables> <bundlebee.maven.repositories.downloads.enabled>false</bundlebee.maven.repositories.downloads.enabled> <bundlebee.kube.api>https://kubernetes.bundlebee.yupiik.test</bundlebee.kube.api> <bundlebee.kube.validateSSL>false</bundlebee.kube.validateSSL> <m2.location>${m2.location}</m2.location> <jdk.internal.httpclient.disableHostnameVerification>true </jdk.internal.httpclient.disableHostnameVerification> <kubeconfig>explicit</kubeconfig> <java.util.logging.manager>io.yupiik.logging.jul.YupiikLogManager</java.util.logging.manager> <org.talend.__shade__.io.netty.noUnsafe>true</org.talend.__shade__.io.netty.noUnsafe> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.1</version> <executions> <execution> <id>check-license</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <inherited>false</inherited> <configuration> <aggregate>true</aggregate> <inlineHeader><![CDATA[Copyright (c) ${project.inceptionYear} - ${project.organization.name} - ${project.organization.url} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ]]></inlineHeader> <mapping> <adoc>DOUBLESLASH_STYLE</adoc> </mapping> <includes> <include>**/*.properties</include> <include>**/*.java</include> <include>**/*.xml</include> <include>**/*.yaml</include> </includes> <excludes> <exclude>LICENSE</exclude> <exclude>**/*.adoc</exclude> <exclude>**/*.idea</exclude> <exclude>**/target/**</exclude> <exclude>**/generated/**</exclude> <exclude>**/minisite/**</exclude> <exclude>**/file</exclude> <exclude>**/.m2/**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.10</version> </plugin> <plugin> <groupId>org.honton.chas</groupId> <artifactId>readfiles-maven-plugin</artifactId> <version>0.0.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>11</source> <doclint>none</doclint> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <releaseProfiles>release,native</releaseProfiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.yupiik.maven</groupId> <artifactId>yupiik-tools-maven-plugin</artifactId> <version>1.0.8</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin><!-- mvn ossindex:audit --> <groupId>org.sonatype.ossindex.maven</groupId> <artifactId>ossindex-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>audit-dependencies</id> <phase /> <goals> <goal>audit</goal> </goals> </execution> </executions> <configuration> <scope>compile,runtime</scope> <excludeVulnerabilityIds> <!-- snakeyaml: CWE-121: Stack-based Buffer Overflow --> <excludeVulnerabilityId>CVE-2022-38752</excludeVulnerabilityId> <!-- Deserialization of Untrusted Data: here data are considered safe --> <excludeVulnerabilityId>CVE-2022-1471</excludeVulnerabilityId> </excludeVulnerabilityIds> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://github.com/yupiik/yupiik-logging/blob/master/LICENSE</url> <distribution>may be downloaded from the Maven repository</distribution> </license> </licenses> <developers> <developer> <name>Romain Manni-Bucau</name> <id>rmannibucau</id> <roles> <role>Contributor</role> </roles> <timezone>+1</timezone> </developer> <developer> <name>Francois Papon</name> <id>fpapon</id> <roles> <role>Contributor</role> </roles> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/yupiik/bundlebee.git</connection> <developerConnection>scm:git:https://github.com/yupiik/bundlebee.git</developerConnection> <url>https://github.com/yupiik/bundlebee.git</url> <tag>bundlebee-1.0.19</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>