multi-source-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.childrengreens</groupId>
<artifactId>multi-source-spring-boot-starter</artifactId>
<version>3.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.childrengreens</groupId>
<artifactId>multi-source-spring-boot-starter</artifactId>
<version>3.0</version>
<packaging>pom</packaging>
<name>Spring Boot Starter for Multi Source</name>
<description>Spring Boot Starter for Multi Data Source</description>
<url>https://github.com/ChildrenGreens/multi-source-spring-boot-starter</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>ChildrenGreens</id>
<name>ChildrenGreens</name>
<email>childrengreens@163.com</email>
</developer>
</developers>
<modules>
<module>redis-multi-source-spring-boot-starter</module>
<module>amqp-multi-source-spring-boot-starter</module>
<module>context-multi-source-spring-boot-starter</module>
<module>influx2-multi-source-spring-boot-starter</module>
</modules>
<scm>
<connection>scm:git:git@github.com:ChildrenGreens/multi-source-spring-boot-starter.git</connection>
<developerConnection>scm:git:git@github.com:ChildrenGreens/multi-source-spring-boot-starter.git</developerConnection>
<url>https://github.com/ChildrenGreens/multi-source-spring-boot-starter</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/ChildrenGreens/multi-source-spring-boot-starter/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot-dependencies.version>4.0.0</spring-boot-dependencies.version>
<jacoco.version>0.8.13</jacoco.version>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<revision>3.0</revision>
<influxdb-client-version>7.4.0</influxdb-client-version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot-dependencies.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.influxdb</groupId>
<artifactId>influxdb-spring</artifactId>
<version>${influxdb-client-version}</version>
</dependency>
<dependency>
<groupId>com.childrengreens</groupId>
<artifactId>context-multi-source-spring-boot-starter</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>com.childrengreens</groupId>
<artifactId>redis-multi-source-spring-boot-starter</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>com.childrengreens</groupId>
<artifactId>amqp-multi-source-spring-boot-starter</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>com.childrengreens</groupId>
<artifactId>influx2-multi-source-spring-boot-starter</artifactId>
<version>3.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<argLine>@{argLine} -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
<useManifestOnlyJar>false</useManifestOnlyJar>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
<configuration>
<licenseSets>
<licenseSet>
<header>licence-header.template</header>
<properties>
<inceptionYear>2012</inceptionYear>
<currentYear>2025</currentYear>
</properties>
<includes>
<include>src/**/*.java</include>
<include>src/**/pom.xml</include>
</includes>
</licenseSet>
</licenseSets>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<strictCheck>true</strictCheck>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
</configuration>
</plugin>
<plugin>
<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>
<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>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>