fusio-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.flamelens</groupId>
<artifactId>fusio-parent</artifactId>
<version>1.1.1</version>
</dependency><?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>
<groupId>dev.flamelens</groupId>
<artifactId>fusio-parent</artifactId>
<version>1.1.1</version>
<packaging>pom</packaging>
<name>fusio</name>
<description>Fused functional I/O pipelines for the JVM — java.io without the decorator onion</description>
<url>https://github.com/tim-warehouseorganizer/fusio</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/tim-warehouseorganizer/fusio.git</connection>
<developerConnection>scm:git:https://github.com/tim-warehouseorganizer/fusio.git</developerConnection>
<url>https://github.com/tim-warehouseorganizer/fusio</url>
</scm>
<developers>
<developer>
<id>tim-warehouseorganizer</id>
<name>Tim Schimandle</name>
<email>tim@warehouseorganizer.com</email>
</developer>
</developers>
<modules>
<module>fusio-core</module>
<module>fusio-jdbc</module>
<module>fusio-bench</module>
<module>fusio-spring-boot-starter</module>
</modules>
<!-- default deploy target: GitHub Packages (SNAPSHOT distribution before
Central). Central releases use `mvn -Prelease deploy` instead, where
the central-publishing plugin takes over. -->
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/${env.GITHUB_REPOSITORY}</url>
</repository>
<snapshotRepository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/${env.GITHUB_REPOSITORY}</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven.compiler.release>25</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.37</jmh.version>
<junit.version>5.11.4</junit.version>
<opencsv.version>5.9</opencsv.version>
<jackson.version>2.18.2</jackson.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<!-- Maven Central publishing: mvn -Prelease deploy. Requires the
dev.flamelens namespace verified on central.sonatype.com (DNS TXT on
flamelens.dev) and a GPG key in ~/.gnupg. fusio-bench is excluded
from publishing (JMH dependency; benchmarks aren't a library). -->
<profile>
<id>release</id>
<build>
<plugins>
<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-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<deploymentName>fusio-${project.version}</deploymentName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>