You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/01/27 12:21:44 UTC

[isis] branch master updated: ISIS-2158: microprofile support: bring in Spring Batch

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e238b2  ISIS-2158: microprofile support: bring in Spring Batch
5e238b2 is described below

commit 5e238b2708cb627888b9e7b6047f3b2035bf384d
Author: Andi Huber <ah...@apache.org>
AuthorDate: Mon Jan 27 13:21:33 2020 +0100

    ISIS-2158: microprofile support: bring in Spring Batch
---
 incubator/mappings/microprofile/pom.xml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/incubator/mappings/microprofile/pom.xml b/incubator/mappings/microprofile/pom.xml
index 4f736e5..575bb95 100644
--- a/incubator/mappings/microprofile/pom.xml
+++ b/incubator/mappings/microprofile/pom.xml
@@ -39,6 +39,36 @@
 			<artifactId>isis-core-metamodel</artifactId>
 		</dependency>
 		
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-web</artifactId>
+			<exclusions>
+				<exclusion>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-starter-tomcat</artifactId>
+				</exclusion>
+				<!-- <exclusion> -->
+				<!-- <groupId>org.springframework</groupId> -->
+				<!-- <artifactId>spring-webmvc</artifactId> -->
+				<!-- </exclusion> -->
+				<exclusion>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-starter-logging</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-batch</artifactId>
+			<exclusions>
+				<exclusion>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-starter-logging</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		
 	</dependencies>
 
 </project>