postrise
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.adonix</groupId> <artifactId>postrise</artifactId> <version>1.0.7</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>org.adonix</groupId> <artifactId>postrise</artifactId> <version>1.0.7</version> <packaging>jar</packaging> <name>Postrise</name> <description>Simple and secure PostgreSQL connectivity.</description> <url>https://postrise.adonix.org</url> <organization> <name>adonix.org</name> <url>https://www.adonix.org</url> </organization> <scm> <connection>scm:git:https://github.com/adonix-org/Postrise.git</connection> <developerConnection>scm:git:https://github.com/adonix-org/Postrise.git</developerConnection> <url>https://github.com/adonix-org/Postrise</url> <tag>HEAD</tag> </scm> <issueManagement> <url>https://github.com/adonix-org/Postrise/issues</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Ty Busby</name> <email>tybusby@gmail.com</email> </developer> </developers> <properties> <!-- project properties --> <version.java>11</version.java> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- dependency versions --> <version.hikaricp>7.0.1</version.hikaricp> <version.log4j2>2.25.1</version.log4j2> <version.postgresql.jdbc>42.7.7</version.postgresql.jdbc> <!-- test dependency versions --> <version.assertj>3.27.4</version.assertj> <version.junit>5.13.4</version.junit> <version.logcaptor>2.12.0</version.logcaptor> <version.slf4j>2.0.17</version.slf4j> <version.testcontainers>1.21.3</version.testcontainers> <!-- plugin properties --> <version.maven-compiler-plugin>3.14.0</version.maven-compiler-plugin> <version.maven-source-plugin>3.3.1</version.maven-source-plugin> <version.maven-javadoc-plugin>3.11.2</version.maven-javadoc-plugin> <version.jacoco-maven-plugin>0.8.13</version.jacoco-maven-plugin> <version.sonar-maven-plugin>5.1.0.4751</version.sonar-maven-plugin> <version.maven-gpg-plugin>3.2.8</version.maven-gpg-plugin> <version.central-publishing-maven-plugin>0.8.0</version.central-publishing-maven-plugin> </properties> <dependencies> <!-- compile --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${version.log4j2}</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>${version.hikaricp}</version> <scope>compile</scope> </dependency> <!-- runtime --> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${version.postgresql.jdbc}</version> <scope>runtime</scope> </dependency> <!-- test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.hakky54</groupId> <artifactId>logcaptor</artifactId> <version>${version.logcaptor}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <version>${version.testcontainers}</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${version.maven-compiler-plugin}</version> <configuration> <source>${version.java}</source> <target>${version.java}</target> <release>${version.java}</release> <compilerArgs> <arg>-proc:none</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${version.jacoco-maven-plugin}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> <configuration> <formats> <format>XML</format> </formats> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${version.sonar-maven-plugin}</version> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.maven-javadoc-plugin}</version> <configuration> <source>${version.java}</source> </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>${version.maven-gpg-plugin}</version> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <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>${version.central-publishing-maven-plugin}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>