-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
61 lines (54 loc) · 2.34 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- SIRIUS parent defines a default build process and also helps to setup IntelliJ.
Therefore it is recommended to run "mvn compile" at least once and let IntelliJ then
sync its settings. -->
<parent>
<groupId>com.scireum</groupId>
<artifactId>sirius-parent</artifactId>
<version>7.0.1</version>
</parent>
<artifactId>sirius-chat-sample</artifactId>
<!-- It is a common practice in our libraries and products to use this version. That way everyone can build
local releases which can be used to test and develop new features. A "real" version is auto-released
by our CI system once a git tag is set -->
<version>DEVELOPMENT-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SIRIUS chat sample</name>
<!-- Defines the Maven repositories used by scireum as uploading to sonatype / mvn central is terribly slow... -->
<repositories>
<repository>
<id>scireum-mvn</id>
<url>https://mvn.scireum.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>scireum-mvn</id>
<url>https://mvn.scireum.com</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- Specifies which sirius-biz version to use. This will bring along sirius-web and sirius-db -->
<dependency>
<groupId>com.scireum</groupId>
<artifactId>sirius-biz</artifactId>
<version>13.0-rc56</version>
</dependency>
<!-- Specifies exactly which sirius-kernel version we want to use. -->
<dependency>
<groupId>com.scireum</groupId>
<artifactId>sirius-kernel</artifactId>
<version>13.18</version>
</dependency>
<!-- Adds parsii - a high speed expression evaluator - as dependency -->
<dependency>
<groupId>com.scireum</groupId>
<artifactId>parsii</artifactId>
<version>4.1</version>
</dependency>
</dependencies>
</project>