-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
155 lines (151 loc) · 4.61 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>compaj</artifactId>
<version>${revision}</version>
<groupId>tech.hiddenproject</groupId>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>applied</module>
<module>lang</module>
<module>repl</module>
<module>gui</module>
<module>lang-extensions</module>
<module>plugin-api</module>
</modules>
<properties>
<applied.version>0.0.2</applied.version>
<core.version>0.0.2</core.version>
<groovy.version>4.0.10</groovy.version>
<gui.version>0.0.4</gui.version>
<lang-extensions.version>0.0.3</lang-extensions.version>
<lang.version>0.0.3.1</lang.version>
<repl.version>0.0.4</repl.version>
<plugin-api.version>0.0.3</plugin-api.version>
<revision>20230804</revision>
</properties>
<dependencies>
<dependency>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
<scope>test</scope>
<version>5.9.2</version>
</dependency>
<dependency>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId>
<scope>test</scope>
<version>5.9.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
<version>2.0.6</version>
</dependency>
<dependency>
<artifactId>slf4j-reload4j</artifactId>
<groupId>org.slf4j</groupId>
<version>2.0.6</version>
</dependency>
<dependency>
<artifactId>log4j-core</artifactId>
<groupId>org.apache.logging.log4j</groupId>
<version>2.19.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>flatten-maven-plugin</artifactId>
<configuration>
<updatePomFile>true</updatePomFile>
</configuration>
<executions>
<execution>
<goals>
<goal>flatten</goal>
</goals>
<id>flatten</id>
<phase>process-resources</phase>
</execution>
<execution>
<goals>
<goal>clean</goal>
</goals>
<id>flatten.clean</id>
<phase>clean</phase>
</execution>
</executions>
<groupId>org.codehaus.mojo</groupId>
<version>1.2.7</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>*.java</include>
</includes>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
<excludePackageNames>tech.hiddenproject.example:tech.hiddenproject.example.*</excludePackageNames>
<source>11</source>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>attach-javadoc</id>
</execution>
<execution>
<goals>
<goal>aggregate</goal>
</goals>
<id>aggregate</id>
<phase>site</phase>
</execution>
</executions>
<groupId>org.apache.maven.plugins</groupId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<configLocation>config/checkstyle/checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>false</failsOnError>
<linkXRef>false</linkXRef>
<propertyExpansion>
config_loc=${maven.multiModuleProjectDirectory}/config/checkstyle
</propertyExpansion>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>