|
1 |
| -<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - <parent> |
4 |
| - <groupId>io.serverlessworkflow</groupId> |
5 |
| - <artifactId>serverlessworkflow-impl</artifactId> |
6 |
| - <version>8.0.0-SNAPSHOT</version> |
7 |
| - </parent> |
8 |
| - <artifactId>serverlessworkflow-impl-core</artifactId> |
9 |
| - <dependencies> |
10 |
| - <dependency> |
11 |
| - <groupId>io.serverlessworkflow</groupId> |
12 |
| - <artifactId>serverlessworkflow-api</artifactId> |
13 |
| - <version>${project.version}</version> |
14 |
| - </dependency> |
15 |
| - <dependency> |
16 |
| - <groupId>io.cloudevents</groupId> |
17 |
| - <artifactId>cloudevents-api</artifactId> |
18 |
| - </dependency> |
19 |
| - <dependency> |
20 |
| - <groupId>io.cloudevents</groupId> |
21 |
| - <artifactId>cloudevents-json-jackson</artifactId> |
22 |
| - </dependency> |
23 |
| - <dependency> |
24 |
| - <groupId>com.github.f4b6a3</groupId> |
25 |
| - <artifactId>ulid-creator</artifactId> |
26 |
| - </dependency> |
27 |
| - <dependency> |
28 |
| - <groupId>com.networknt</groupId> |
29 |
| - <artifactId>json-schema-validator</artifactId> |
30 |
| - </dependency> |
31 |
| - <dependency> |
32 |
| - <groupId>net.thisptr</groupId> |
33 |
| - <artifactId>jackson-jq</artifactId> |
34 |
| - </dependency> |
35 |
| - <dependency> |
36 |
| - <groupId>org.junit.jupiter</groupId> |
37 |
| - <artifactId>junit-jupiter-api</artifactId> |
38 |
| - <scope>test</scope> |
39 |
| - </dependency> |
40 |
| - <dependency> |
41 |
| - <groupId>org.junit.jupiter</groupId> |
42 |
| - <artifactId>junit-jupiter-engine</artifactId> |
43 |
| - <scope>test</scope> |
44 |
| - </dependency> |
45 |
| - <dependency> |
46 |
| - <groupId>org.junit.jupiter</groupId> |
47 |
| - <artifactId>junit-jupiter-params</artifactId> |
48 |
| - <scope>test</scope> |
49 |
| - </dependency> |
50 |
| - <dependency> |
51 |
| - <groupId>org.assertj</groupId> |
52 |
| - <artifactId>assertj-core</artifactId> |
53 |
| - <scope>test</scope> |
54 |
| - </dependency> |
55 |
| - <dependency> |
56 |
| - <groupId>ch.qos.logback</groupId> |
57 |
| - <artifactId>logback-classic</artifactId> |
58 |
| - <scope>test</scope> |
59 |
| - </dependency> |
60 |
| - </dependencies> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <groupId>io.serverlessworkflow</groupId> |
| 6 | + <artifactId>serverlessworkflow-impl</artifactId> |
| 7 | + <version>8.0.0-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + <artifactId>serverlessworkflow-impl-core</artifactId> |
| 10 | + <name>Serverless Workflow :: Impl :: Core</name> |
| 11 | + <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>io.serverlessworkflow</groupId> |
| 14 | + <artifactId>serverlessworkflow-api</artifactId> |
| 15 | + <version>${project.version}</version> |
| 16 | + </dependency> |
| 17 | + <dependency> |
| 18 | + <groupId>io.cloudevents</groupId> |
| 19 | + <artifactId>cloudevents-api</artifactId> |
| 20 | + </dependency> |
| 21 | + <dependency> |
| 22 | + <groupId>io.cloudevents</groupId> |
| 23 | + <artifactId>cloudevents-json-jackson</artifactId> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>com.github.f4b6a3</groupId> |
| 27 | + <artifactId>ulid-creator</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>com.networknt</groupId> |
| 31 | + <artifactId>json-schema-validator</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>net.thisptr</groupId> |
| 35 | + <artifactId>jackson-jq</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.junit.jupiter</groupId> |
| 39 | + <artifactId>junit-jupiter-api</artifactId> |
| 40 | + <scope>test</scope> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.junit.jupiter</groupId> |
| 44 | + <artifactId>junit-jupiter-engine</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.junit.jupiter</groupId> |
| 49 | + <artifactId>junit-jupiter-params</artifactId> |
| 50 | + <scope>test</scope> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.assertj</groupId> |
| 54 | + <artifactId>assertj-core</artifactId> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>ch.qos.logback</groupId> |
| 59 | + <artifactId>logback-classic</artifactId> |
| 60 | + <scope>test</scope> |
| 61 | + </dependency> |
| 62 | + </dependencies> |
61 | 63 | </project>
|
0 commit comments