Skip to content

Commit f214b1c

Browse files
committed
refactored package structure
1 parent 71b1212 commit f214b1c

File tree

3 files changed

+18
-24
lines changed

3 files changed

+18
-24
lines changed

pom.xml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
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>
@@ -19,9 +17,7 @@
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>
@@ -40,12 +36,7 @@
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>

srv/pom.xml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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

@@ -49,16 +49,6 @@
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>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

0 commit comments

Comments
 (0)