spring-boot-starter-hibernate-ddl-export-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.inventiosystems</groupId> <artifactId>spring-boot-starter-hibernate-ddl-export-demo</artifactId> <version>2.4.0-1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.0</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.inventiosystems</groupId> <artifactId>spring-boot-starter-hibernate-ddl-export-demo</artifactId> <version>2.4.0-1</version> <packaging>jar</packaging> <name>Spring Boot Starter Hibernate DDL Exporter Demo</name> <description>Project to demo the hibernate ddl exporter</description> <url>https://bitbucket.org/inventiosystems/spring-boot-starter-hibernate-ddl-exporter/overview</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Philipp Gerhard</name> <email>philipp.gerhard@me.com</email> <organization>Inventio Systems</organization> <organizationUrl>https://bitbucket.org/pgerhard/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://bitbucket.org:inventiosystems/spring-boot-starter-hibernate-ddl-exporter.git</connection> <developerConnection>scm:git:ssh://bitbucket.org:inventiosystems/spring-boot-starter-hibernate-ddl-exporter.git</developerConnection> <url>https://bitbucket.org/santorio/spring-boot-starter-hibernate-ddl-exporter/overview</url> </scm> <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> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <license.licenseName>apache_2.0</license.licenseName> <license.inceptionYear>2017</license.inceptionYear> <license.organizationName>Inventio Systems</license.organizationName> <license.licenseResolver>${project.baseUri}/src/license</license.licenseResolver> <license.addJavaLicenseAfterPackage>false</license.addJavaLicenseAfterPackage> <maven.sources.plugin.enabled>none</maven.sources.plugin.enabled> <maven.javadoc.plugin.enabled>none</maven.javadoc.plugin.enabled> <maven.gpg.plugin.enabled>none</maven.gpg.plugin.enabled> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>com.inventiosystems</groupId> <artifactId>spring-boot-starter-hibernate-ddl-exporter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- Database drivers to use in test --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>6.0.6</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <target>1.8</target> <source>1.8</source> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.14</version> <executions> <execution> <id>default</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>${maven.sources.plugin.enabled}</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <phase>${maven.javadoc.plugin.enabled}</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>${maven.gpg.plugin.enabled}</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>ci</id> <properties> <maven.gpg.plugin.enabled>verify</maven.gpg.plugin.enabled> <maven.sources.plugin.enabled>package</maven.sources.plugin.enabled> <maven.javadoc.plugin.enabled>package</maven.javadoc.plugin.enabled> </properties> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- Set this to true and the release will automatically proceed and sync to Central Repository will follow --> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>