h2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.1tchy.shaded.com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200.2</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>io.github.1tchy.shaded.com.h2database</groupId>
<artifactId>h2</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
<version>1.4.200.2</version>
<description>This artifact contains the same classes as
com.h2database%h2%1.4.*
but in another package to support migration to com.h2database%h2%2.*</description>
<url>https://github.com/1tchy/shaded-h2database</url>
<developers>
<developer>
<name>Laurin Murer</name>
<url>https://laurinmurer.ch/</url>
</developer>
</developers>
<licenses>
<license>
<name>Mozilla Public License, Version 2.0</name>
<url>https://www.mozilla.org/MPL/</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/1tchy/shaded-h2database.git</connection>
<developerConnection>scm:git:ssh://github.com/1tchy/shaded-h2database.git</developerConnection>
<tag>h2-1.4.200.2</tag>
<url>http://github.com/1tchy/shaded-h2database/tree/master</url>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>${java-version}</source>
<target>${java-version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<createSourcesJar>true</createSourcesJar>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<transformers>
<transformer>
<manifestEntries>
<X-Compile-Source-JDK>${java-version}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${java-version}</X-Compile-Target-JDK>
</manifestEntries>
</transformer>
<transformer />
</transformers>
<relocations>
<relocation>
<pattern>org.h2</pattern>
<shadedPattern>io.github._1tchy.shaded.org.h2</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/versions/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>
<groupId>org.moditect</groupId>
<artifactId>moditect-maven-plugin</artifactId>
<version>1.0.0.RC2</version>
<executions>
<execution>
<id>add-module-info</id>
<phase>package</phase>
<goals>
<goal>add-module-info</goal>
</goals>
<configuration>
<module>
<moduleInfo>
<name>io.github._1tchy.shaded.com.h2database</name>
</moduleInfo>
</module>
<jdepsExtraArgs>
<arg>--multi-release</arg>
<arg>9</arg>
<arg>--ignore-missing-deps</arg>
</jdepsExtraArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<outputDirectory>${packed-and-unpacked-sources-dir}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<sourcepath>${packed-and-unpacked-sources-dir}</sourcepath>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<java-version>8</java-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<packed-and-unpacked-sources-dir>${project.build.directory}/sources</packed-and-unpacked-sources-dir>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
</project>