File tree Expand file tree Collapse file tree 3 files changed +18
-24
lines changed
src/main/java/com/sap/cap/incident_management Expand file tree Collapse file tree 3 files changed +18
-24
lines changed Original file line number Diff line number Diff line change 11<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" >
22 <modelVersion >4.0.0</modelVersion >
3- <groupId >customer </groupId >
3+ <groupId >com.sap.cap </groupId >
44 <artifactId >incident-management-parent</artifactId >
55 <version >${revision} </version >
66 <packaging >pom</packaging >
77 <name >incident-management parent</name >
8- <properties >
9-
10-
8+ <properties >
119 <revision >1.0.0-SNAPSHOT</revision >
1210 <jdk .version>17</jdk .version>
1311 <cds .services.version>2.0.1</cds .services.version>
1917 <module >srv</module >
2018 </modules >
2119 <dependencyManagement >
22- <dependencies >
23-
24-
20+ <dependencies >
2521 <dependency >
2622 <groupId >com.sap.cds</groupId >
2723 <artifactId >cds-services-bom</artifactId >
4036 </dependencyManagement >
4137 <build >
4238 <plugins >
43-
44-
45-
46-
47-
48- <plugin >
39+ <plugin >
4940 <artifactId >maven-compiler-plugin</artifactId >
5041 <version >3.11.0</version >
5142 <configuration >
Original file line number Diff line number Diff line change 55
66 <parent >
77 <artifactId >incident-management-parent</artifactId >
8- <groupId >customer </groupId >
8+ <groupId >com.sap.cap </groupId >
99 <version >${revision} </version >
1010 </parent >
1111
4949 <artifactId >cds-starter-cloudfoundry</artifactId >
5050 <version >2.4.1</version >
5151 </dependency >
52- <!-- security dependency-->
53- <!-- <dependency>
54- <groupId>org.springframework.boot</groupId>
55- <artifactId>spring-boot-starter-security</artifactId>
56- </dependency>
57- <dependency>
58- <groupId>com.sap.cloud.security</groupId>
59- <artifactId>resourceserver-security-spring-boot-starter</artifactId>
60- <version>3.2.1</version>
61- </dependency> -->
6252 <dependency >
6353 <groupId >org.springframework.boot</groupId >
6454 <artifactId >spring-boot-starter-test</artifactId >
Original file line number Diff line number Diff line change 1+ package com .sap .cap .incident_management ;
2+
3+ import org .springframework .boot .SpringApplication ;
4+ import org .springframework .boot .autoconfigure .SpringBootApplication ;
5+
6+ @ SpringBootApplication
7+ public class Application {
8+
9+ public static void main (String [] args ) {
10+ SpringApplication .run (Application .class , args );
11+ }
12+
13+ }
You can’t perform that action at this time.
0 commit comments