cache-hibernate-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.bernardokcosta</groupId>
<artifactId>cache-hibernate-spring-boot-starter</artifactId>
<version>0.1.0-alpha.4</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.bernardokcosta</groupId>
<artifactId>cache-hibernate-parent</artifactId>
<version>0.1.0-alpha.4</version>
</parent>
<artifactId>cache-hibernate-spring-boot-starter</artifactId>
<name>CacheHibernate :: Spring Boot Starter</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cache-hibernate-spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aspectj</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>central-publishing</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.jar.version}</version>
<executions>
<execution>
<id>attach-placeholder-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>sources</classifier>
<classesDirectory>${project.basedir}</classesDirectory>
<includes>
<include>README.md</include>
</includes>
</configuration>
</execution>
<execution>
<id>attach-placeholder-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${project.basedir}</classesDirectory>
<includes>
<include>README.md</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>