|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
5
|
<modelVersion>4.0.0</modelVersion>
|
|
6
|
|
|
7
|
<groupId>com.apusic</groupId>
|
|
8
|
<artifactId>aams-spring-boot-starter</artifactId>
|
|
9
|
<version>2.1.7.RELEASE</version>
|
|
10
|
|
|
11
|
<description>Apusic Application Mico Server</description>
|
|
12
|
<name>aams-spring-boot-starter</name>
|
|
13
|
|
|
14
|
<build>
|
|
15
|
<pluginManagement>
|
|
16
|
<plugins>
|
|
17
|
<plugin>
|
|
18
|
<groupId>org.apache.maven.plugins</groupId>
|
|
19
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
20
|
<version>3.2</version>
|
|
21
|
<configuration>
|
|
22
|
<source>1.8</source>
|
|
23
|
<target>1.8</target>
|
|
24
|
</configuration>
|
|
25
|
</plugin>
|
|
26
|
</plugins>
|
|
27
|
</pluginManagement>
|
|
28
|
</build>
|
|
29
|
|
|
30
|
<packaging>jar</packaging>
|
|
31
|
|
|
32
|
<dependencies>
|
|
33
|
<dependency>
|
|
34
|
<groupId>javax.annotation</groupId>
|
|
35
|
<artifactId>javax.annotation-api</artifactId>
|
|
36
|
<version>1.3.2</version>
|
|
37
|
<scope>compile</scope>
|
|
38
|
</dependency>
|
|
39
|
<dependency>
|
|
40
|
<groupId>com.apusic.ams.embed</groupId>
|
|
41
|
<artifactId>aas-embed-core</artifactId>
|
|
42
|
<version>10.1</version>
|
|
43
|
<scope>compile</scope>
|
|
44
|
</dependency>
|
|
45
|
<dependency>
|
|
46
|
<groupId>com.apusic.ams.embed</groupId>
|
|
47
|
<artifactId>aas-embed-el</artifactId>
|
|
48
|
<version>10.1</version>
|
|
49
|
<scope>compile</scope>
|
|
50
|
</dependency>
|
|
51
|
<dependency>
|
|
52
|
<groupId>com.apusic.ams.embed</groupId>
|
|
53
|
<artifactId>aas-embed-websocket</artifactId>
|
|
54
|
<version>10.1</version>
|
|
55
|
<scope>compile</scope>
|
|
56
|
</dependency>
|
|
57
|
<dependency>
|
|
58
|
<groupId>com.apusic.ams.embed</groupId>
|
|
59
|
<artifactId>aas-util</artifactId>
|
|
60
|
<version>10.1</version>
|
|
61
|
<scope>compile</scope>
|
|
62
|
</dependency>
|
|
63
|
<dependency>
|
|
64
|
<groupId>com.apusic.ams.embed</groupId>
|
|
65
|
<artifactId>ecj</artifactId>
|
|
66
|
<version>4.12</version>
|
|
67
|
<scope>compile</scope>
|
|
68
|
</dependency>
|
|
69
|
|
|
70
|
<dependency>
|
|
71
|
<groupId>org.springframework.boot</groupId>
|
|
72
|
<artifactId>spring-boot</artifactId>
|
|
73
|
<version>${springboot.version}</version>
|
|
74
|
<scope>provided</scope>
|
|
75
|
</dependency>
|
|
76
|
<dependency>
|
|
77
|
<groupId>org.springframework.boot</groupId>
|
|
78
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
79
|
<version>${springboot.version}</version>
|
|
80
|
<scope>provided</scope>
|
|
81
|
</dependency>
|
|
82
|
<dependency>
|
|
83
|
<groupId>org.springframework.boot</groupId>
|
|
84
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
85
|
<version>${springboot.version}</version>
|
|
86
|
<scope>provided</scope>
|
|
87
|
</dependency>
|
|
88
|
<!-- https://mvnrepository.com/artifact/org.reactivestreams/reactive-streams -->
|
|
89
|
<dependency>
|
|
90
|
<groupId>org.reactivestreams</groupId>
|
|
91
|
<artifactId>reactive-streams</artifactId>
|
|
92
|
<version>1.0.3</version>
|
|
93
|
</dependency>
|
|
94
|
<dependency>
|
|
95
|
<groupId>io.projectreactor</groupId>
|
|
96
|
<artifactId>reactor-core</artifactId>
|
|
97
|
<version>3.2.9.RELEASE</version>
|
|
98
|
</dependency>
|
|
99
|
</dependencies>
|
|
100
|
<!--++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
101
|
<!--++++++++++++++++++ Properties ++++++++++++++++++++++++++++++++++++++ -->
|
|
102
|
<!--++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
103
|
<properties>
|
|
104
|
<springboot.version>2.1.7.RELEASE</springboot.version>
|
|
105
|
<maven.compile.encoding>UTF-8</maven.compile.encoding>
|
|
106
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
107
|
</properties>
|
|
108
|
</project>
|