generate-database
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.tdminhnhat</groupId> <artifactId>generate-database</artifactId> <version>1.1.0</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>io.github.tdminhnhat</groupId> <artifactId>generate-database</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <name>generate-database</name> <description>A library allows you can generate database</description> <url>https://github.com/TDMinhNhat/generate-database-library</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Nhat Truong</name> <email>tdminhnhat13092003@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/TDMinhNhat/generate-database-library.git</connection> <developerConnection>scm:git:ssh://github.com/TDMinhNhat/generate-database-library.git</developerConnection> <url>https://github.com/TDMinhNhat/generate-database-library</url> </scm> <!-- Required by Sonatype: where to publish --> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>central</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.20.0</version> </dependency> <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <version>4.8.181</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.10.2</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.38</version> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> <version>7.1.0.Final</version> </dependency> <dependency> <groupId>cfr</groupId> <artifactId>cfr</artifactId> <version>0.152</version> <optional>true</optional> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <!-- Attach sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <!-- Attach javadocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <!-- Sign artifacts with GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals><goal>sign</goal></goals> </execution> </executions> <configuration> <gpgArguments> <arg>--batch</arg> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <!--suppress UnresolvedMavenProperty --> <passphrase>${env.MAVEN_GPG_PASSPHRASE}</passphrase> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals><goal>shade</goal></goals> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <relocations> <relocation> <pattern>org.benf</pattern> <shadedPattern>io.github.tdminhnhat.shaded.org.benf</shadedPattern> </relocation> </relocations> <minimizeJar>false</minimizeJar> <filters> <filter> <artifact>net.bytebuddy:byte-buddy</artifact> <excludes> <exclude>META-INF/versions/**</exclude> </excludes> </filter> <filter> <artifact>cfr:cfr</artifact> <includes> <include>**/*</include> </includes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>