-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
pom.xml
305 lines (279 loc) · 13.8 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?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>org.jjazzlab</groupId>
<artifactId>jjazzlab-parent</artifactId>
<version>4.1.1</version>
<packaging>pom</packaging>
<name>JJazzLab Parent</name>
<!-- project meta-data -->
<url>https://github.com/jjazzboss/JJazzLab</url>
<description>JJazzLab parent project</description>
<organization>
<url>https://www.jjazzlab.org</url>
</organization>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1</name>
<url>https://www.gnu.org/licenses/lgpl-2.1.en.html#license-text</url>
</license>
</licenses>
<developers>
<developer>
<id>jlelasseux</id>
<name>Jerome Lelasseux</name>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<organization>JJazzLab</organization>
<organizationUrl>https://www.jjazzlab.org</organizationUrl>
<email>jl@jjazzlab.org</email>
<timezone>Europe/Paris</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/jjazzboss/JJazzLab.git</connection>
<developerConnection>scm:git:git@github.com:jjazzboss/JJazzLab.git</developerConnection>
<url>https://github.com/jjazzboss/JJazzLab</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netbeans.version>RELEASE210</netbeans.version>
<brandingToken>jjazzlab</brandingToken> <!-- used for nbm:cluster-app configuration -->
<jjazzlab.maven.compiler.plugin.version>3.11.0</jjazzlab.maven.compiler.plugin.version>
<jjazzlab.compiler.release>17</jjazzlab.compiler.release>
<jjazzlab.javac.fork>false</jjazzlab.javac.fork>
<jjazzlab.javac.showDeprecation>true</jjazzlab.javac.showDeprecation>
<jjazzlab.javac.showWarnings>true</jjazzlab.javac.showWarnings>
<!-- <jjazzlab.javac.xlint>-Xlint:all,-serial</jjazzlab.javac.xlint> -->
<jjazzlab.javac.xlint></jjazzlab.javac.xlint> <!-- temporary trick to avoid https://github.com/apache/netbeans/issues/6826 -->
<jjazzlab.surefire.skipTests>true</jjazzlab.surefire.skipTests>
<jjazzlab.forceEnglish>false</jjazzlab.forceEnglish>
</properties>
<build>
<pluginManagement>
<!--
General plugins configuration for current and children POM.
Note that some plugins might need to be also referenced in the build/plugins section to be part of the build.
-->
<plugins>
<plugin>
<groupId>org.apache.netbeans.utilities</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>4.8</version>
<extensions>true</extensions>
<configuration>
<brandingToken>${brandingToken}</brandingToken> <!-- for nbm:cluster-app, nbm:branding, nbm:run-platform, nbm:standalone-zip -->
<cluster>${brandingToken}</cluster> <!-- for nbm:branding, nbm:nbm -->
</configuration>
<executions>
<!-- Disable default-branding by default (branding module re-enables it) -->
<execution>
<id>default-branding</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<!-- Jar plugin, required for NBM -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<archive>
<!-- required since nbm-maven-plugin 3.0-->
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${jjazzlab.maven.compiler.plugin.version}</version>
<configuration>
<release>${jjazzlab.compiler.release}</release>
<showDeprecation>${jjazzlab.javac.showDeprecation}</showDeprecation>
<showWarnings>${jjazzlab.javac.showWarnings}</showWarnings>
<useIncrementalCompilation>false</useIncrementalCompilation> <!-- see https://stackoverflow.com/questions/76349126/building-parent-project-always-recompiles-all-modules -->
<!-- fork must be true to pass -J arguments to the compiler -->
<fork>${jjazzlab.javac.fork}</fork>
<compilerArgs>
<arg>${jjazzlab.javac.xlint}</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<release>${jjazzlab.compiler.release}</release>
<failOnError>false</failOnError>
<sourceFileIncludes>
<include>org/jjazz/**/api/**/*.java</include>
<include>org/jjazz/**/spi/**/*.java</include>
</sourceFileIncludes>
<show>public</show>
<nohelp>false</nohelp>
<detectLinks>false</detectLinks>
<detectOfflineLinks>true</detectOfflineLinks>
<quiet>false</quiet>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<skipTests>${jjazzlab.surefire.skipTests}</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>3.4.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
</plugins>
</build>
<profiles>
<profile>
<!-- Use mvn -Pprepare-deploy install. Prepare a javadoc jar and a sources jar, gpg signing when needed, for each module, gpg when -->
<id>prepare-deploy</id>
<properties>
<jjazzlab.surefire.skipTests>false</jjazzlab.surefire.skipTests>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>generate-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>core/ChordLeadSheet</module>
<module>core/EmbeddedSynth</module>
<module>core/FlatComponents</module>
<module>core/Harmony</module>
<module>core/Humanizer</module>
<module>core/Importers</module>
<module>core/Midi</module>
<module>core/MidiMix</module>
<module>core/MusicControl</module>
<module>core/OutputSynth</module>
<module>core/Phrase</module>
<module>core/PhraseTransform</module>
<module>core/Quantizer</module>
<module>core/Rhythm</module>
<module>core/RhythmDatabase</module>
<module>core/RhythmMusicGeneration</module>
<module>core/RhythmStubs</module>
<module>core/Song</module>
<module>core/SongContext</module>
<module>core/SongStructure</module>
<module>core/TestPlayerService</module>
<module>core/UIUtilities</module>
<module>core/UndoManager</module>
<module>core/Utilities</module>
<module>core/Xstream</module>
<module>core/Guava</module>
<module>app/application</module>
<module>app/branding</module>
<module>app/ActiveSong</module>
<module>app/Analytics</module>
<module>app/Arranger</module>
<module>app/Base</module>
<module>app/CL_Editor</module>
<module>app/CL_EditorImpl</module>
<module>app/ChordInspector</module>
<module>app/CoreUIcomponents</module>
<module>app/EasyReader</module>
<module>app/FileDirectoryManager</module>
<module>app/ImprovisationSupport</module>
<module>app/InstrumentChooser</module>
<module>app/InstrumentComponents</module>
<module>app/ItemRenderer</module>
<module>app/MixConsole</module>
<module>app/MusicControlActions</module>
<module>app/Options</module>
<module>app/PianoRoll</module>
<module>app/PopupWindowMenuPatch</module>
<module>app/Print</module>
<module>app/RhythmDatabaseImpl</module>
<module>app/RhythmSelectionDialog</module>
<module>app/RpCustomEditorFactoryImpl</module>
<module>app/SS_Editor</module>
<module>app/SS_EditorImpl</module>
<module>app/Score</module>
<module>app/SongEditorManager</module>
<module>app/SongMemoViewer</module>
<module>app/SptEditor</module>
<module>app/StartupManager</module>
<module>app/Test</module>
<module>app/UISettings</module>
<module>app/Upgrade</module>
<module>app/YjzCreationWizard</module>
<module>app/ZoomableSliders</module>
<module>plugins/FluidSynthEmbeddedSynth</module>
<module>plugins/YamJJazz</module>
</modules>
</project>