-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpom.xml
executable file
·61 lines (55 loc) · 2.07 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
<?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>
<groupId>org.agilewiki.jactor2</groupId>
<artifactId>jactor2</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>JActor2</name>
<description>POJO Actors</description>
<url>https://github.com/laforge49/JActor2</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:laforge49/JActor2.git</connection>
<developerConnection>scm:git:[email protected]:laforge49/JActor2.git</developerConnection>
<url>[email protected]:laforge49/JActor2.git</url>
</scm>
<developers>
<developer>
<id>laforge49</id>
<name>Bill La Forge</name>
<email>[email protected]</email>
</developer>
<developer>
<id>skunkiferous</id>
<name>Sebastien Diot</name>
<email>[email protected]</email>
</developer>
<developer>
<id>dallaybatta</id>
<name>Vicky Kak</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jactor2.version>1.0.0</jactor2.version>
<metrics.version>3.1.0</metrics.version>
<junit.version>4.11</junit.version>
<slf4j.version>1.7.7</slf4j.version>
<guava.version>18.0</guava.version>
</properties>
<modules>
<module>jactor2-core</module>
<module>jactor2-coreMt</module>
<module>jactor2-metrics</module>
<module>jactor2-examples</module>
</modules>
</project>