hibernate-jpa-schemagen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dellroad</groupId> <artifactId>hibernate-jpa-schemagen</artifactId> <version>6.5.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.dellroad</groupId> <artifactId>hibernate-jpa-schemagen</artifactId> <version>6.5.1</version> <name>Hibernate+JPA Schema Generator</name> <packaging>maven-plugin</packaging> <description>Sensible Maven schema DDL generator for projects using Hibernate and JPA</description> <url>https://github.com/archiecobbs/hibernate-jpa-schemagen/</url> <properties> <java.version>11</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <hibernate.version>6.5.2.Final</hibernate.version> <slf4j.version>2.0.13</slf4j.version> <validation-api.version>3.0.2</validation-api.version> <extra.enforcer.rules.version>1.5.1</extra.enforcer.rules.version> <maven.artifact.version>3.9.4</maven.artifact.version> <maven.checkstyle.plugin.version>3.0.0</maven.checkstyle.plugin.version> <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <maven.enforcer.plugin.version>3.4.1</maven.enforcer.plugin.version> <maven.gpg.plugin.version>3.1.0</maven.gpg.plugin.version> <maven.plugin-api.version>3.9.4</maven.plugin-api.version> <maven.plugin.tools.version>3.9.0</maven.plugin.tools.version> <maven.project.version>3.0-alpha-2</maven.project.version> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/archiecobbs/hibernate-jpa-schemagen/issues</url> </issueManagement> <scm> <url>https://github.com/archiecobbs/hibernate-jpa-schemagen/</url> <connection>scm:git:git://github.com/archiecobbs/hibernate-jpa-schemagen.git</connection> <developerConnection>scm:git:git://github.com/archiecobbs/hibernate-jpa-schemagen.git</developerConnection> </scm> <developers> <developer> <id>archie</id> <name>Archie Cobbs</name> <email>archie.cobbs@gmail.com</email> </developer> </developers> <distributionManagement> <downloadUrl>https://github.com/archiecobbs/hibernate-jpa-schemagen</downloadUrl> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <site> <id>${project.artifactId}-site</id> <url>https://github.com/archiecobbs/hibernate-jpa-schemagen/</url> </site> </distributionManagement> <repositories> <repository> <id>oss.sonatype.org-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <!-- Hibernate --> <dependency> <groupId>org.hibernate.tool</groupId> <artifactId>hibernate-tools-orm</artifactId> <version>${hibernate.version}</version> </dependency> <!-- Validation API (dependency missing from Hibernate) --> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>${validation-api.version}</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Plugin stuff --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.plugin-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${maven.project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven.artifact.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.tools.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <!-- Compiler --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <release>${java.version}</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven.plugin.tools.version}</version> <executions> <execution> <id>default-descriptor</id> <phase>process-classes</phase> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <!-- Maven Enforcer --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> <dependencies> <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>extra-enforcer-rules</artifactId> <version>${extra.enforcer.rules.version}</version> </dependency> </dependencies> <executions> <execution> <id>maven_enforcer</id> <phase>validate</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>[11,12)</version> </requireJavaVersion> <enforceBytecodeVersion> <maxJdkVersion>${java.version}</maxJdkVersion> </enforceBytecodeVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- Checkstyle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven.checkstyle.plugin.version}</version> <executions> <execution> <id>checkstyle_verify</id> <phase>compile</phase> <configuration> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <includeTestSourceDirectory>true</includeTestSourceDirectory> <linkXRef>false</linkXRef> <includeResources>false</includeResources> <includeTestResources>false</includeTestResources> <sourceDirectories> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> <sourceDirectory>${project.build.testSourceDirectory}</sourceDirectory> </sourceDirectories> <configLocation>${project.basedir}/src/checkstyle/checkstyle.xml</configLocation> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <!-- Maven Central requires signed artifacts --> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>