forked from hvandenb/SplunkModularInputsJavaFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
62 lines (55 loc) · 1.68 KB
/
pom.xml
File metadata and controls
62 lines (55 loc) · 1.68 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.splunk</groupId>
<artifactId>modinput</artifactId>
<version>1</version>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>com.splunk</groupId>
<artifactId>splunk_tlsv12</artifactId>
<version>1</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>core</module>
<module>amqp</module>
<module>coap</module>
<module>helloworld</module>
<module>jms</module>
<module>jmx</module>
<module>kafka</module>
<module>kinesis</module>
<module>mqtt</module>
<module>protocol</module>
<module>webspheremq</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>localrepo</id>
<url>file://${basedir}/repo</url>
</repository>
</repositories>
</project>