-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpom.xml
50 lines (44 loc) · 1.51 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
50
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>eu.arrowhead</groupId>
<artifactId>demo</artifactId>
<version>4.4.0.2</version>
<packaging>pom</packaging>
<name>demo-java-spring</name>
<description>Arrowhead Client Demo using Spring Boot</description>
<url>https://github.com/arrowhead-f/sos-examples-spring</url>
<licenses>
<license>
<name>Eclipse Public License - v 2.0</name>
<url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url>
</license>
</licenses>
<modules>
<module>demo-car</module>
<module>demo-car-with-events</module>
<module>demo-energy-forecast</module>
<module>demo-exchange-rate-intercloud</module>
</modules>
<dependencies>
<dependency>
<groupId>ai.aitia</groupId>
<artifactId>arrowhead-application-library-java-spring</artifactId>
<version>4.4.0.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>