admin-base
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.surati.gap</groupId> <artifactId>admin-base</artifactId> <version>0.5.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2022 Surati Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to read the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <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> <parent> <groupId>com.jcabi</groupId> <artifactId>parent</artifactId> <version>0.57.2</version> </parent> <groupId>io.surati.gap</groupId> <artifactId>admin-base</artifactId> <version>0.5.6</version> <description>Base module for GAP web projects</description> <url>https://github.com/gap-enterprise/admin-base</url> <inceptionYear>2022</inceptionYear> <organization> <name>Surati.io</name> <url>https://www.surati.io</url> </organization> <licenses> <license> <name>private</name> <url>https://github.com/gap-enterprise/admin-base/blob/master/LICENSE.txt</url> <distribution>site</distribution> </license> </licenses> <developers> <developer> <id>1</id> <name>Olivier B. OURA</name> <email>baudoliver7@gmail.com</email> <organization>Baudoliver7.com</organization> <organizationUrl>http://www.baudoliver7.com</organizationUrl> <roles> <role>Architect</role> <role>Developer</role> </roles> <timezone>0</timezone> </developer> </developers> <issueManagement> <system>GitHub</system> <url>https://github.com/gap-enterprise/admin-base/issues</url> </issueManagement> <scm> <connection>scm:git:git://github.com/gap-enterprise/admin-base.git</connection> <developerConnection>scm:git:git://github.com:gap-enterprise/admin-base.git</developerConnection> <url>http://github.com/gap-enterprise/admin-base/tree/master</url> </scm> <properties> <jooq.version>3.14.15</jooq.version> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.3.4</version> </dependency> <!-- Use 1.4.x because there is an error on 2.x.x. See https://stackoverflow.com/questions/70696570/h2-database-engine-version-upgrade-from-1-4-182-to-2-0-x-fails-with-caused-by-o --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.200</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jcabi</groupId> <artifactId>jcabi-jdbc</artifactId> <version>0.17.7</version> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>4.9.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>5.2.2</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> </dependency> <dependency> <groupId>com.baudoliver7</groupId> <artifactId>lightweight-db</artifactId> <version>0.5.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.cactoos</groupId> <artifactId>cactoos</artifactId> <version>0.42</version> </dependency> <dependency> <groupId>org.llorllale</groupId> <artifactId>cactoos-matchers</artifactId> <version>0.25</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.json</groupId> <artifactId>javax.json-api</artifactId> <version>1.1.4</version> </dependency> <dependency> <groupId>io.surati.gap</groupId> <artifactId>commons-utils</artifactId> <version>0.2</version> </dependency> <dependency> <groupId>io.surati.gap</groupId> <artifactId>database-utils</artifactId> <version>0.5.1</version> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>4.0.3</version> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> <version>${jooq.version}</version> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq-meta</artifactId> <version>${jooq.version}</version> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq-codegen</artifactId> <version>${jooq.version}</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>oracle-xe</artifactId> <version>1.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc8</artifactId> <version>21.5.0.0</version> </dependency> <dependency> <groupId>com.baudoliver7</groupId> <artifactId>easy-liquibase4j</artifactId> <version>0.2.0</version> </dependency> <dependency> <groupId>com.baudoliver7</groupId> <artifactId>jdbc-toolset</artifactId> <version>0.1.0</version> </dependency> <dependency> <groupId>com.baudoliver7</groupId> <artifactId>takes-utils</artifactId> <version>0.3.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.10.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <output>file</output> <outputDirectory>${project.build.directory}/site/jacoco</outputDirectory> </configuration> <executions> <execution> <id>jacoco-check</id> </execution> <execution> <id>jacoco-site</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>jacoco-initialize</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <!--JOOQ generates the DB model classes for us--> <id>jooqGen</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>jooq-codegen</id> <phase>compile</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>io.surati.gap.admin.base.db.jooq.JooqGen</mainClass> <cleanupDaemonThreads>false</cleanupDaemonThreads> <arguments> <argument>--driver=${db.driver}</argument> <argument>--url=${db.url}</argument> <argument>--user=${db.user}</argument> <argument>--password=${db.password}</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>qulice</id> <build> <plugins> <plugin> <groupId>com.qulice</groupId> <artifactId>qulice-maven-plugin</artifactId> <version>0.19.4</version> <configuration> <excludes> <exclude>xml:.*</exclude> <exclude>java:./src/main/java/io/surati/gap/admin/base/jooq/generated/*</exclude> <exclude>duplicatefinder:.*</exclude> <exclude>dependencies:.*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>itcase</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <parallel>none</parallel> <trimStackTrace>false</trimStackTrace> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sonatype</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <configuration> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>