hibernate-types-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vladmihalcea</groupId> <artifactId>hibernate-types-parent</artifactId> <version>2.21.1</version> </dependency>
<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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.vladmihalcea</groupId> <artifactId>hibernate-types-parent</artifactId> <version>2.21.1</version> <packaging>pom</packaging> <name>Hibernate Types</name> <description> Hibernate Types adds extra types like JSON, Array, etc. </description> <url>https://github.com/vladmihalcea/hibernate-types</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>author</id> <name>Vlad Mihalcea</name> <email>mih_vlad@yahoo.com</email> </developer> </developers> <scm> <developerConnection>scm:git:git@github.com:vladmihalcea/hibernate-types.git</developerConnection> <url>scm:git:git@github.com:vladmihalcea/hibernate-types.git</url> <connection>scm:git:git@github.com:vladmihalcea/hibernate-types.git</connection> <tag>hibernate-types-parent-2.21.1</tag> </scm> <repositories> <repository> <id>Spring</id> <releases> <enabled>true</enabled> </releases> <url>https://repo.spring.io/milestone</url> </repository> </repositories> <modules> <module>hibernate-types-60</module> <module>hibernate-types-55</module> <module>hibernate-types-52</module> <module>hibernate-types-5</module> <module>hibernate-types-43</module> <module>hibernate-types-4</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers-bom</artifactId> <version>${testcontainers.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Required dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.ttddyy</groupId> <artifactId>datasource-proxy</artifactId> <version>${datasource-proxy.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>${hsqldb.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc8</artifactId> <version>${oracle.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>${mssql.version}</version> <scope>test</scope> </dependency> <!-- Test containers --> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>oracle-xe</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mssqlserver</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>test</defaultGoal> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <version>${maven-toolchains-plugin.version}</version> <executions> <execution> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>${jdk-test.version}</version> </jdk> </toolchains> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <excludes> <exclude>**/*JvmForkTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${sonar-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> </plugins> </build> <profiles> <!-- mvn -P release -DignoreSnapshots=true release:clean release:prepare mvn -P release release:perform --> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <properties> <console.log.level>ERROR</console.log.level> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <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>${maven-gpg-plugin.version}</version> <configuration> <keyname>mih_vlad@yahoo.com</keyname> <passphrase>${gpg.passphrase}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <configuration> <retryFailedDeploymentCount>5</retryFailedDeploymentCount> <deployAtEnd>true</deployAtEnd> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>test</id> <properties> <console.log.level>ERROR</console.log.level> </properties> </profile> <profile> <id>fork-jvm-test</id> <properties> <console.log.level>DEBUG</console.log.level> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <reuseForks>false</reuseForks> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <jdk.version>6</jdk.version> <jdk-test.version>8</jdk-test.version> <maven.compiler.source>${jdk.version}</maven.compiler.source> <maven.compiler.target>${jdk.version}</maven.compiler.target> <maven.compiler.testSource>${jdk-test.version}</maven.compiler.testSource> <maven.compiler.testTarget>${jdk-test.version}</maven.compiler.testTarget> <console.log.level>DEBUG</console.log.level> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-toolchains-plugin.version>1.1</maven-toolchains-plugin.version> <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version> <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> <sonar-maven-plugin.version>2.2</sonar-maven-plugin.version> <coveralls-maven-plugin.version>3.1.0</coveralls-maven-plugin.version> <jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-release-plugin.version>2.5.2</maven-release-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-site-plugin.version>3.7.1</maven-site-plugin.version> <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> <slf4j.version>1.7.25</slf4j.version> <logback.version>1.2.3</logback.version> <junit.version>4.13.1</junit.version> <mockito.version>1.8.5</mockito.version> <datasource-proxy.version>1.6</datasource-proxy.version> <testcontainers.version>1.17.3</testcontainers.version> <hsqldb.version>2.2.8</hsqldb.version> <h2.version>1.4.200</h2.version> <postgresql.version>42.4.1</postgresql.version> <mysql.version>8.0.30</mysql.version> <oracle.version>21.5.0.0</oracle.version> <mssql.version>11.2.1.jre8</mssql.version> </properties> </project>