r2dbc-spi-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.r2dbc</groupId> <artifactId>r2dbc-spi-parent</artifactId> <version>0.8.2.RELEASE</version> </dependency>
<!-- ~ Copyright 2017-2019 the original author or authors. ~ ~ 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 ~ ~ https://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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.r2dbc</groupId> <artifactId>r2dbc-spi-parent</artifactId> <version>0.8.2.RELEASE</version> <packaging>pom</packaging> <name>Reactive Relational Database Connectivity - SPI Parent</name> <description>Parent module for Reactive Relational Database Connectivity</description> <url>https://r2dbc.io</url> <modules> <module>r2dbc-spi</module> <module>r2dbc-spi-test</module> </modules> <properties> <java.version>1.8</java.version> <jsr305.version>3.0.2</jsr305.version> <junit.version>5.6.1</junit.version> <assertj.version>3.16.1</assertj.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <reactive-streams.version>1.0.3</reactive-streams.version> <reactor.version>Dysprosium-SR7</reactor.version> </properties> <licenses> <license> <name>Apache License 2.0</name> <url>https://repository.jboss.org/licenses/apache-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/r2dbc/r2dbc-spi</connection> <url>https://github.com/r2dbc/r2dbc-spi</url> </scm> <developers> <developer> <name>Ben Hale</name> <email>bhale@pivotal.io</email> </developer> <developer> <name>Mark Paluch</name> <email>mpaluch@pivotal.io</email> </developer> <developer> <name>Mirro Mutth</name> <email>mirromutth@gmail.com</email> </developer> <developer> <name>Greg Turnquist</name> <email>gturnquist@pivotal.io</email> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>${jsr305.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <compilerArgs> <arg>-Werror</arg> <arg>-Xlint:all</arg> <arg>-Xlint:-options</arg> <arg>-Xlint:-processing</arg> <arg>-Xlint:-serial</arg> </compilerArgs> <showWarnings>true</showWarnings> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <R2DBC-Specification-Version>${project.version}</R2DBC-Specification-Version> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <links> <link>https://www.reactive-streams.org/reactive-streams-${reactive-streams.version}-javadoc/</link> </links> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <runOrder>random</runOrder> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>oss</flattenMode> <pomElements> <pluginManagement>keep</pluginManagement> <properties>keep</properties> <parent>expand</parent> <repositories>remove</repositories> </pomElements> </configuration> </execution> <execution> <id>flatten-clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>spec</id> <modules> <module>r2dbc-spec</module> </modules> </profile> <profile> <id>snapshot</id> <build> <plugins> <plugin> <groupId>org.jfrog.buildinfo</groupId> <artifactId>artifactory-maven-plugin</artifactId> <version>2.6.1</version> <inherited>false</inherited> <executions> <execution> <id>build-info</id> <goals> <goal>publish</goal> </goals> <configuration> <buildInfo> <buildUrl>{{BUILD_URL}}</buildUrl> </buildInfo> <deployProperties> <zip.name>r2dbc-spi-parent</zip.name> <zip.displayname>r2dbc-spi-parent</zip.displayname> <zip.deployed>false</zip.deployed> <archives>*:*:*:*@zip</archives> </deployProperties> <publisher> <contextUrl>https://repo.spring.io</contextUrl> <username>{{ARTIFACTORY_USR}}</username> <password>{{ARTIFACTORY_PSW}}</password> <repoKey>libs-snapshot-local</repoKey> <snapshotRepoKey>libs-snapshot-local</snapshotRepoKey> </publisher> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>milestone</id> <build> <plugins> <plugin> <groupId>org.jfrog.buildinfo</groupId> <artifactId>artifactory-maven-plugin</artifactId> <version>2.6.1</version> <inherited>false</inherited> <executions> <execution> <id>build-info</id> <goals> <goal>publish</goal> </goals> <configuration> <buildInfo> <buildUrl>{{BUILD_URL}}</buildUrl> </buildInfo> <deployProperties> <zip.name>r2dbc-spi-parent</zip.name> <zip.displayname>r2dbc-spi-parent</zip.displayname> <zip.deployed>false</zip.deployed> <archives>*:*:*:*@zip</archives> </deployProperties> <publisher> <contextUrl>https://repo.spring.io</contextUrl> <username>{{ARTIFACTORY_USR}}</username> <password>{{ARTIFACTORY_PSW}}</password> <repoKey>libs-milestone-local</repoKey> <snapshotRepoKey>libs-milestone-local</snapshotRepoKey> </publisher> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.jfrog.buildinfo</groupId> <artifactId>artifactory-maven-plugin</artifactId> <version>2.6.1</version> <inherited>false</inherited> <executions> <execution> <id>build-info</id> <goals> <goal>publish</goal> </goals> <configuration> <buildInfo> <buildUrl>{{BUILD_URL}}</buildUrl> </buildInfo> <deployProperties> <zip.name>r2dbc-spi-parent</zip.name> <zip.displayname>r2dbc-spi-parent</zip.displayname> <zip.deployed>false</zip.deployed> <archives>*:*:*:*@zip</archives> </deployProperties> <publisher> <contextUrl>https://repo.spring.io</contextUrl> <username>{{ARTIFACTORY_USR}}</username> <password>{{ARTIFACTORY_PSW}}</password> <repoKey>libs-release-local</repoKey> <snapshotRepoKey>libs-release-local</snapshotRepoKey> </publisher> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>central</id> <build> <pluginManagement> <plugins> <!-- Sign JARs --> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <!-- Deploy to Sonatype OSS Nexus --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>sonatype</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> <keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure> <skipStagingRepositoryClose>true</skipStagingRepositoryClose> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>spring-snapshots</id> <name>Spring Snapshots</name> <url>https://repo.spring.io/snapshot</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>spring-plugins-release</id> <url>https://repo.spring.io/plugins-release</url> </pluginRepository> </pluginRepositories> </project>