-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
90 lines (89 loc) · 3.18 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
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<!--
*
* This is a framework for Asynchronous Event processing based on event hub.
* Copyright (C) 2011 Imran M Yousuf (imyousuf@smartitengineering.com)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses />.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.smartitengineering</groupId>
<artifactId>smart-core</artifactId>
<version>0.1.10</version>
</parent>
<groupId>com.smartitengineering</groupId>
<artifactId>smart-async-events</artifactId>
<packaging>pom</packaging>
<version>0.3-SNAPSHOT</version>
<name>Smart Async Events</name>
<inceptionYear>2011</inceptionYear>
<description>
</description>
<url>http://github.com/smart-it/smart-async-events</url>
<organization>
<name>Smart IT Engineering</name>
<url>http://www.smartitengineering.com</url>
</organization>
<licenses>
<license>
<name>GPL v3</name>
<distribution>repo and manual</distribution>
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
</license>
</licenses>
<developers>
<developer>
<id>imyousuf</id>
<name>Imran M Yousuf</name>
<email>imyousuf@smartitengineering.com</email>
<organization>Smart IT Engineering</organization>
<timezone>GMT +0600</timezone>
<roles>
<role>Project Owner</role>
<role>Developer</role>
<role>Maintainer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/smart-it/smart-async-events.git</connection>
<developerConnection>scm:git:ssh://git@github.com/imyousuf/smart-async-events.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
<modules>
<module>async-events-api</module>
<module>async-events-impl-event-hub</module>
<module>async-events-impl-akka-decorator</module>
</modules>
</project>