-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpom.xml
86 lines (81 loc) · 3.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<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>
<artifactId>cloud-agent</artifactId>
<name>Cosmic Agent</name>
<parent>
<groupId>cloud.cosmic</groupId>
<artifactId>cosmic</artifactId>
<version>6.10.9-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>cloud.cosmic</groupId>
<artifactId>cosmic-common</artifactId>
<version>6.10.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>cloud.cosmic</groupId>
<artifactId>cosmic-model</artifactId>
<version>6.10.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-daemon</groupId>
<artifactId>commons-daemon</artifactId>
</dependency>
<dependency>
<groupId>org.libvirt</groupId>
<artifactId>libvirt</artifactId>
</dependency>
<dependency>
<groupId>com.ceph</groupId>
<artifactId>rados</artifactId>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<!-- dependencies for starting a post upload server on ssvm -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cloud.cosmic</groupId>
<artifactId>cloud-framework-security</artifactId>
<version>6.10.9-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
<layout>ZIP</layout>
<excludeArtifactIds>
antlr,aspectjrt,cosmic-db,dom4j,hibernate-commons-annotations,hibernate-core,hibernate-entitymanager,hibernate-jpa-2.1-api,jandex,javax.transaction-api,jboss-logging,spring-aspects,spring-boot-starter-aop,spring-boot-starter-data-jpa,spring-boot-starter-jdbc,spring-data-commons,spring-data-jpa,spring-jdbc,spring-orm,spring-tx,tomcat-jdbc,tomcat-juli,xml-apis
</excludeArtifactIds>
</configuration>
</plugin>
</plugins>
</build>
</project>