forked from CloudSlang/score
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
49 lines (43 loc) · 1.53 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<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">
<!--
(c) Copyright 2014 Hewlett-Packard Development Company, L.P.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Apache License v2.0 which accompany this distribution.
The Apache License is available at
http://www.apache.org/licenses/LICENSE-2.0
-->
<parent>
<groupId>io.openscore</groupId>
<artifactId>score-parent</artifactId>
<version>0.1.252-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>worker</artifactId>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>engine</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.openscore</groupId>
<artifactId>score-worker-execution-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.openscore</groupId>
<artifactId>score-worker-manager-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>worker-execution</module>
<module>worker-manager</module>
</modules>
</project>