-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
145 lines (135 loc) · 5.68 KB
/
pom.xml
File metadata and controls
145 lines (135 loc) · 5.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?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>
<groupId>midorum.melbone</groupId>
<artifactId>melbone</artifactId>
<version>${revision}</version>
<name>melbone</name>
<packaging>pom</packaging>
<modules>
<module>model</module>
<module>settings</module>
<module>window</module>
<module>executor</module>
<module>ui</module>
<module>main</module>
<module>coverage</module>
</modules>
<properties>
<revision>2.2.0</revision>
<app.build.properties.filename>app-build.properties</app.build.properties.filename>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.version>3.8.0</maven.compiler.version>
<maven.jar.version>3.3.0</maven.jar.version>
<maven.shade.version>3.4.0</maven.shade.version>
<maven.surefire.version>3.0.0-M9</maven.surefire.version>
<mojo.maven.properties.version>1.1.0</mojo.maven.properties.version>
<maven.jacoco.version>0.8.12</maven.jacoco.version>
<rxjava.version>1.3.8</rxjava.version>
<dma-util.version>0.3.11</dma-util.version>
<midorum.Win32API.version>3.3.3</midorum.Win32API.version>
<h2database.version>2.1.210</h2database.version>
<log4j.version>2.20.0</log4j.version>
<!--<junit.platform.version>1.9.2</junit.platform.version>-->
<junit.version>5.9.2</junit.version>
<mockito.version>5.13.0</mockito.version>
<hamcrest.version>2.2</hamcrest.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/io.reactivex/rxjava -->
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>${rxjava.version}</version>
</dependency>
<!--util-->
<dependency>
<groupId>dma-util</groupId>
<artifactId>dma-util</artifactId>
<version>${dma-util.version}</version>
</dependency>
<!--win32 support-->
<dependency>
<groupId>com.midorum</groupId>
<artifactId>Win32API</artifactId>
<version>${midorum.Win32API.version}</version>
<scope>compile</scope>
</dependency>
<!--h2-->
<!-- <dependency>-->
<!-- <groupId>com.h2database</groupId>-->
<!-- <artifactId>h2-mvstore</artifactId>-->
<!-- <version>${h2database.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2database.version}</version>
</dependency>
<!--logging-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<!-- https://stackoverflow.com/questions/41498021/is-it-worth-to-use-slf4j-with-log4j2-->
<!-- <dependency>-->
<!-- <groupId>org.apache.logging.log4j</groupId>-->
<!-- <artifactId>log4j-slf4j-impl</artifactId>-->
<!-- <version>${log4j.version}</version>-->
<!-- </dependency>-->
<!--testing-->
<!-- <dependency>-->
<!-- <groupId>org.junit.platform</groupId>-->
<!-- <artifactId>junit-platform-suite</artifactId>-->
<!-- <version>${junit.platform.version}</version>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<showDeprecation>true</showDeprecation>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>