|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion>
|
| 6 | + <groupId>io.orkes.demo</groupId> |
| 7 | + <artifactId>event-driven-microservice</artifactId> |
| 8 | + <version>0.1</version> |
| 9 | + <name>event-driven-microservice</name> |
| 10 | + <description>Demo Project for Orkes Conductor on Spring Boot</description> |
5 | 11 |
|
6 | 12 | <parent>
|
7 | 13 | <groupId>org.springframework.boot</groupId>
|
|
10 | 16 | <relativePath/> <!-- lookup parent from repository -->
|
11 | 17 | </parent>
|
12 | 18 |
|
13 |
| - <groupId>io.orkes.demo</groupId> |
14 |
| - <artifactId>event-driven-microservice</artifactId> |
15 |
| - <version>0.1</version> |
16 |
| - |
17 |
| - <name>event-driven-microservice</name> |
18 |
| - <description>Demo Project for Orkes Conductor on Spring Boot</description> |
19 |
| - |
20 |
| - |
21 | 19 | <dependencies>
|
22 |
| - |
23 | 20 | <dependency>
|
24 | 21 | <groupId>org.springframework.boot</groupId>
|
25 | 22 | <artifactId>spring-boot-starter-web</artifactId>
|
26 | 23 | </dependency>
|
27 |
| - |
28 | 24 | <dependency>
|
29 | 25 | <groupId>io.orkes.conductor</groupId>
|
30 | 26 | <artifactId>orkes-conductor-client</artifactId>
|
31 | 27 | <version>${conductor.client.version}</version>
|
32 | 28 | </dependency>
|
33 |
| - |
34 | 29 | <dependency>
|
35 | 30 | <groupId>org.springdoc</groupId>
|
36 | 31 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
37 | 32 | <version>${springdoc-openapi-webmvc-ui.version}</version>
|
38 | 33 | </dependency>
|
39 |
| - |
40 | 34 | <dependency>
|
41 | 35 | <groupId>org.projectlombok</groupId>
|
42 | 36 | <artifactId>lombok</artifactId>
|
43 | 37 | <optional>true</optional>
|
44 | 38 | </dependency>
|
45 |
| - |
46 | 39 | <dependency>
|
47 | 40 | <groupId>org.springframework.boot</groupId>
|
48 | 41 | <artifactId>spring-boot-starter-test</artifactId>
|
|
0 commit comments