hibernate-ehcache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.guicedee.services</groupId> <artifactId>hibernate-ehcache</artifactId> <version>1.1.1.9-jre16</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"> <parent> <artifactId>services-parent</artifactId> <groupId>com.guicedee.services</groupId> <version>1.1.1.9-jre16</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hibernate-ehcache</artifactId> <name>hibernate-ehcache</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>shade</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.hibernate:hibernate-ehcache</include> </includes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.java</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/services/*</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>META-INF.services_</pattern> <shadedPattern>META-INF.services</shadedPattern> </relocation> <relocation> <pattern>net.sf.ehcache</pattern> <shadedPattern>org.ehcache</shadedPattern> </relocation> <relocation> <pattern>javax.persistence</pattern> <shadedPattern>jakarta.persistence</shadedPattern> </relocation> <relocation> <pattern>javax.cache</pattern> <shadedPattern>jakarta.cache</shadedPattern> </relocation> <relocation> <pattern>javax.xml.bind</pattern> <shadedPattern>jakarta.xml.bind</shadedPattern> </relocation> <relocation> <pattern>javax.inject</pattern> <shadedPattern>jakarta.inject</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>jdk9</id> <dependencyManagement> <dependencies> <dependency> <groupId>com.guicedee</groupId> <artifactId>hibernate-bom</artifactId> <version>1.1.1.9-jre16</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> </profile> <profile> <id>jdk8</id> <dependencyManagement> <dependencies> <dependency> <groupId>com.guicedee</groupId> <artifactId>hibernate-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> </profile> </profiles> <dependencies> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>hibernate-core</artifactId> <version>1.1.1.9-jre16</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>jboss-logmanager</artifactId> <version>1.1.1.9-jre16</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>ehcache</artifactId> <version>1.1.1.9-jre16</version> <scope>compile</scope> </dependency> </dependencies> </project>