Created
December 19, 2016 08:15
-
-
Save slaskawi/3e40ceaae5a55845129796733ec9bcbf to your computer and use it in GitHub Desktop.
Spring Boot Starters - Embedded pom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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>com.example</groupId> | |
| <artifactId>myproject</artifactId> | |
| <version>1.0.0-SNAPSHOT</version> | |
| <properties> | |
| <infinispan.starters.version>1.0.0.Alpha1</infinispan.starters.version> | |
| <version.infinispan>8.2.4.Final</version.infinispan> | |
| </properties> | |
| <dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.infinispan</groupId> | |
| <artifactId>infinispan-bom</artifactId> | |
| <version>${version.infinispan}</version> | |
| <type>pom</type> | |
| <scope>import</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-parent</artifactId> | |
| <version>${spring-boot.version}</version> | |
| <type>pom</type> | |
| <scope>import</scope> | |
| </dependency> | |
| </dependencies> | |
| </dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.infinispan</groupId> | |
| <artifactId>inifinispan-spring-boot-starter</artifactId> | |
| <version>${infinispan.starters.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.infinispan</groupId> | |
| <artifactId>infinispan-core</artifactId> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-maven-plugin</artifactId> | |
| <version>${spring-boot.version}</version> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment