fusion
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.yupiik.fusion</groupId> <artifactId>fusion</artifactId> <version>1.0.21</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2022 - present - 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.fusion</groupId> <artifactId>fusion</artifactId> <version>1.0.21</version> <packaging>pom</packaging> <name>Fusion</name> <description>Reflectionless and selfcontained framework (no business code dependency on jakarta/spring/guice).</description> <url>https://yupiik.github.io/fusion/</url> <properties> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.outputTimestamp>2024-09-29T15:51:57Z</project.build.outputTimestamp> <tomcat.version>10.1.30</tomcat.version> <yupiik-logging.version>1.0.8</yupiik-logging.version> <junit-jupiter.version>5.11.1</junit-jupiter.version> </properties> <modules> <module>fusion-api</module> <module>fusion-processor</module> <module>fusion-build-api</module> <module>fusion-json</module> <module>fusion-http-server</module> <module>fusion-testing</module> <module>fusion-jsonrpc</module> <module>fusion-cli</module> <module>fusion-httpclient-parent</module> <module>fusion-tracing</module> <module>fusion-observability</module> <module>fusion-persistence</module> <module>fusion-documentation</module> <module>fusion-handlebars</module> <module>fusion-jwt</module> <module>fusion-kubernetes-operator-base</module> </modules> <dependencies> <dependency> <groupId>io.yupiik.logging</groupId> <artifactId>yupiik-logging-jul</artifactId> <version>${yupiik-logging.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.3</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> <version>9.0.1</version> <configuration> <injectAllReactorProjects>true</injectAllReactorProjects> <generateGitPropertiesFile>false</generateGitPropertiesFile> <dateFormat>yyyy-MM-dd'T'HH:mm:ss'Z'</dateFormat> <dateFormatTimeZone>GMT</dateFormatTimeZone> <includeOnlyProperties> <includeOnlyProperty>^git.commit.time$</includeOnlyProperty> </includeOnlyProperties> </configuration> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> <phase>initialize</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.4.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>${maven.compiler.release}</release> <encoding>UTF-8</encoding> <parameters>true</parameters> <compilerArgs> <compilerArg>-Xlint:unchecked</compilerArg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.4.0</version> <configuration> <trimStackTrace>false</trimStackTrace> <systemPropertyVariables> <java.util.logging.manager>io.yupiik.logging.jul.YupiikLogManager</java.util.logging.manager> <java.net.preferIPv4Stack>true</java.net.preferIPv4Stack> </systemPropertyVariables> <properties> <configurationParameters> junit.jupiter.execution.parallel.enabled = true junit.jupiter.execution.parallel.mode.default = concurrent junit.jupiter.execution.parallel.mode.classes.default = concurrent </configurationParameters> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <releaseProfiles>release</releaseProfiles> </configuration> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.11</version> </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> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>4.0.0-M16</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.4.1</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.5</version> <executions> <execution> <id>check-license</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <inherited>false</inherited> <configuration> <aggregate>true</aggregate> <mapping> <adoc>DOUBLESLASH_STYLE</adoc> </mapping> <licenseSets> <licenseSet> <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> <useDefaultExcludes>true</useDefaultExcludes> <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> </licenseSet> </licenseSets> </configuration> </plugin> <plugin><!-- mvn ossindex:audit --> <groupId>org.sonatype.ossindex.maven</groupId> <artifactId>ossindex-maven-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>audit-dependencies</id> <phase /> <goals> <goal>audit</goal> </goals> </execution> </executions> <configuration> <scope>compile,runtime</scope> <!-- // exclude false positive for Tomcat 10.1.x as it's raised because of Tomcat 9.x --> <excludeVulnerabilityIds>CVE-2023-42794</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-javadoc-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>17</source> <doclint>none</doclint> <encoding>UTF-8</encoding> <failOnError>false</failOnError> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <configuration> <gpgArguments> <arg>--digest-algo=SHA512</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <executions> <execution> <id>source-release-checksum</id> <goals> <goal>artifacts</goal> </goals> </execution> </executions> <configuration> <algorithms> <algorithm>SHA-512</algorithm> </algorithms> <csvSummary>false</csvSummary> </configuration> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://github.com/yupiik/fusion/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/fusion.git</connection> <developerConnection>scm:git:https://github.com/yupiik/fusion.git</developerConnection> <url>https://github.com/yupiik/fusion.git</url> <tag>fusion-1.0.21</tag> </scm> <organization> <name>Yupiik SAS</name> <url>https://www.yupiik.com</url> </organization> <inceptionYear>2022 - present</inceptionYear> </project>