|
@@ -12,6 +12,79 @@
|
12
|
12
|
<maven.compiler.source>18</maven.compiler.source>
|
13
|
13
|
<maven.compiler.target>18</maven.compiler.target>
|
14
|
14
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
15
|
+ <scala.binary.version>2.13</scala.binary.version>
|
15
|
16
|
</properties>
|
16
|
|
-
|
|
17
|
+
|
|
18
|
+ <parent>
|
|
19
|
+ <groupId>org.springframework.boot</groupId>
|
|
20
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
21
|
+ <version>2.7.3</version>
|
|
22
|
+ <relativePath/>
|
|
23
|
+ </parent>
|
|
24
|
+
|
|
25
|
+ <build>
|
|
26
|
+ <plugins>
|
|
27
|
+ <plugin>
|
|
28
|
+ <groupId>net.alchim31.maven</groupId>
|
|
29
|
+ <artifactId>scala-maven-plugin</artifactId>
|
|
30
|
+ <version>3.1.3</version>
|
|
31
|
+ <executions>
|
|
32
|
+ <execution>
|
|
33
|
+ <goals>
|
|
34
|
+ <goal>compile</goal>
|
|
35
|
+ <goal>testCompile</goal>
|
|
36
|
+ </goals>
|
|
37
|
+ </execution>
|
|
38
|
+ </executions>
|
|
39
|
+ </plugin>
|
|
40
|
+ </plugins>
|
|
41
|
+ </build>
|
|
42
|
+
|
|
43
|
+ <dependencyManagement>
|
|
44
|
+ <dependencies>
|
|
45
|
+ <dependency>
|
|
46
|
+ <groupId>com.typesafe.akka</groupId>
|
|
47
|
+ <artifactId>akka-bom_${scala.binary.version}</artifactId>
|
|
48
|
+ <version>2.6.20</version>
|
|
49
|
+ <type>pom</type>
|
|
50
|
+ <scope>import</scope>
|
|
51
|
+ </dependency>
|
|
52
|
+ </dependencies>
|
|
53
|
+ </dependencyManagement>
|
|
54
|
+
|
|
55
|
+ <dependencies>
|
|
56
|
+ <!-- Scala -->
|
|
57
|
+ <dependency>
|
|
58
|
+ <groupId>org.scala-lang</groupId>
|
|
59
|
+ <artifactId>scala-library</artifactId>
|
|
60
|
+ <version>2.13.8</version>
|
|
61
|
+ </dependency>
|
|
62
|
+ <!-- Akka stream -->
|
|
63
|
+ <dependency>
|
|
64
|
+ <groupId>com.typesafe.akka</groupId>
|
|
65
|
+ <artifactId>akka-stream_${scala.binary.version}</artifactId>
|
|
66
|
+ </dependency>
|
|
67
|
+ <!-- SpringBoot -->
|
|
68
|
+ <dependency>
|
|
69
|
+ <groupId>org.springframework.boot</groupId>
|
|
70
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
71
|
+ <exclusions>
|
|
72
|
+ <exclusion>
|
|
73
|
+ <groupId>org.slf4j</groupId>
|
|
74
|
+ <artifactId>log4j-over-slf4j</artifactId>
|
|
75
|
+ </exclusion>
|
|
76
|
+ <exclusion>
|
|
77
|
+ <groupId>ch.qos.logback</groupId>
|
|
78
|
+ <artifactId>logback-classic</artifactId>
|
|
79
|
+ </exclusion>
|
|
80
|
+ </exclusions>
|
|
81
|
+ </dependency>
|
|
82
|
+ <!-- Test -->
|
|
83
|
+ <dependency>
|
|
84
|
+ <groupId>org.springframework.boot</groupId>
|
|
85
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
86
|
+ <scope>test</scope>
|
|
87
|
+ </dependency>
|
|
88
|
+ </dependencies>
|
|
89
|
+
|
17
|
90
|
</project>
|