-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·127 lines (113 loc) · 3.56 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
<?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>com.amshulman</groupId>
<artifactId>bukkit-parent</artifactId>
<version>0.24</version>
</parent>
<groupId>com.amshulman</groupId>
<artifactId>insight-parent</artifactId>
<version>dev-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Insight</name>
<inceptionYear>2013</inceptionYear>
<developers>
<developer>
<id>ams2990</id>
</developer>
</developers>
<modules>
<module>insight-cb</module>
<module>insight-api</module>
<module>insight-common</module>
<module>insight-parser</module>
<module>insight-sql</module>
<module>insight-plugin</module>
</modules>
<scm>
<connection>scm:git:https://github.com/MinerAp/insight-parent.git</connection>
<developerConnection>scm:git:[email protected]:MinerAp/insight-parent.git</developerConnection>
<url>https://github.com/MinerAp/insight-parent</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/MinerAp/insight-parent/issues</url>
</issueManagement>
<ciManagement>
<system>jenkins</system>
<url>https://build.minerap.com/view/Insight/job/insight-parent/</url>
</ciManagement>
<distributionManagement>
<repository>
<id>minerap-release</id>
<url>https://repo.minerap.com/repository/minerap-releases/</url>
</repository>
<snapshotRepository>
<id>minerap-snapshot</id>
<url>https://repo.minerap.com/repository/minerap-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<libdir>com.amshulman.insight.lib</libdir>
<antlr4-runtime.version>4.6</antlr4-runtime.version> <!-- http://repo1.maven.org/maven2/org/antlr/antlr4-runtime/ -->
<trove4j.version>3.0.3</trove4j.version> <!-- http://repo1.maven.org/maven2/net/sf/trove4j/trove4j/ -->
</properties>
<dependencyManagement>
<dependencies>
<!-- Insight libraries -->
<dependency>
<groupId>com.amshulman</groupId>
<artifactId>insight-api</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.amshulman</groupId>
<artifactId>insight-common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.amshulman</groupId>
<artifactId>insight-parser</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.amshulman</groupId>
<artifactId>insight-sql</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.amshulman</groupId>
<artifactId>insight-redis</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!-- ANTLR -->
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4-runtime.version}</version>
<scope>provided</scope>
</dependency>
<!-- Trove -->
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>${trove4j.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>minerap-repo</id>
<name>MinerAp</name>
<url>https://repo.minerap.com/repository/public/</url>
</repository>
</repositories>
</project>