-
Notifications
You must be signed in to change notification settings - Fork 32
/
pom.xml
156 lines (145 loc) · 4.11 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>oculus.influent</groupId>
<artifactId>influent</artifactId>
<packaging>pom</packaging>
<version>1.2.0</version>
<name>Influent Project Modules</name>
<description>Parent module for building Influent projects</description>
<url>https://github.com/oculusinfo/influent</url>
<scm>
<url>https://github.com/oculusinfo/influent</url>
<connection>scm:git:https://github.com/oculusinfo/influent.git</connection>
</scm>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>djonker</id>
<name>David Jonker</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<aperture.version>1.0.3</aperture.version>
<influent.dev.client.src>../influent-client/influent-clientjs/src</influent.dev.client.src>
</properties>
<!-- For development convenience these properties may be used to copy out
the appropriate phantom capture executable based on the OS. In a production
environment the appropriate version and the path to it must be set up manually. -->
<profiles>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<influent.dev.phantomjs.type>exe</influent.dev.phantomjs.type>
<influent.dev.phantomjs.binary>phantomjs.exe</influent.dev.phantomjs.binary>
</properties>
</profile>
<profile>
<id>linux</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<properties>
<influent.dev.phantomjs.type>linux-x86-64</influent.dev.phantomjs.type>
<influent.dev.phantomjs.binary>phantomjs</influent.dev.phantomjs.binary>
</properties>
</profile>
<profile>
<id>linux-i686</id>
<activation>
<os>
<family>unix</family>
<arch>i686</arch>
</os>
</activation>
<properties>
<influent.dev.phantomjs.type>linux-i686</influent.dev.phantomjs.type>
<influent.dev.phantomjs.binary>phantomjs</influent.dev.phantomjs.binary>
</properties>
</profile>
<profile>
<id>macosx</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<properties>
<influent.dev.phantomjs.type>macosx</influent.dev.phantomjs.type>
<influent.dev.phantomjs.binary>phantomjs</influent.dev.phantomjs.binary>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>influent-spi</module>
<module>influent-server</module>
<module>influent-client</module>
<module>kiva</module>
<module>bitcoin</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.6.6</version>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-web</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
<!--scope>test</scope-->
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<!--scope>test</scope-->
</dependency>
</dependencies>
</dependencyManagement>
</project>