-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
121 lines (116 loc) · 5.05 KB
/
pom.xml
File metadata and controls
121 lines (116 loc) · 5.05 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?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>in.cfcomputing</groupId>
<artifactId>odin</artifactId>
<version>1.3-SNAPSHOT</version>
</parent>
<groupId>in.cfcomputing</groupId>
<artifactId>yggdrasil</artifactId>
<version>1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>cFactor::Yggdrasil</name>
<url>http://www.cfcomputing.co.in</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<yggdrasil-odin.version>1.3-SNAPSHOT</yggdrasil-odin.version>
<yggdrasil-camel.version>2.21.2</yggdrasil-camel.version>
<yggdrasil-thyme-leaf.version>3.0.0.RELEASE</yggdrasil-thyme-leaf.version>
<yggdrasil-cfactor-commons.version>1.0-SNAPSHOT</yggdrasil-cfactor-commons.version>
<yggdrasil-apache-commomns.version>1.2</yggdrasil-apache-commomns.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>in.cfcomputing.odin</groupId>
<artifactId>odin-core</artifactId>
<version>${yggdrasil-odin.version}</version>
</dependency>
<dependency>
<groupId>in.cfcomputing.odin</groupId>
<artifactId>odin-domain</artifactId>
<version>${yggdrasil-odin.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>${yggdrasil-camel.version}</version>
</dependency>
<dependency>
<groupId>in.cfcomputing.commons</groupId>
<artifactId>commons-yggdrasil</artifactId>
<version>${yggdrasil-cfactor-commons.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-http4</artifactId>
<version>${yggdrasil-camel.version}</version>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring4</artifactId>
<version>${yggdrasil-thyme-leaf.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>in.cfcomputing.yggdrasil</groupId>
<artifactId>yggdrasil-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>in.cfcomputing.yggdrasil.adapters</groupId>
<artifactId>sms-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>in.cfcomputing.yggdrasil.adapters</groupId>
<artifactId>e-mail-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-mail</artifactId>
<version>${yggdrasil-camel.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-spring</artifactId>
<version>${yggdrasil-camel.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${yggdrasil-apache-commomns.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring-javaconfig</artifactId>
<version>${yggdrasil-camel.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test</artifactId>
<version>${yggdrasil-camel.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>yggdrasil-main</module>
<module>yggdrasil-core</module>
<module>yggdrasil-configuration</module>
<module>yggdrasil-dist</module>
<module>yggdrasil-adapters</module>
</modules>
<scm>
<connection>scm:git:ssh://gibu.george@git.swiftwallet.aws.local/cFactor/yggdrasil.git</connection>
<developerConnection>
scm:git:ssh://gibu.george@git.swiftwallet.aws.local/cFactor/yggdrasil.git
</developerConnection>
<tag>yggdrasil-1.1</tag>
</scm>
</project>