-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmaven.yml
31 lines (25 loc) · 786 Bytes
/
maven.yml
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
project:
build.sourceEncoding: UTF-8
reporting.outputEncoding: UTF-8
maven.compiler:
forceJavacCompilerUse: true
showWarnings: true
showDeprecation: true
maven.surefire.argLine: --enable-preview
exec:
mainClass: com.epam.courses.java.fundamentals.intro.Hello
executable: java
jar.name: ${project.name}-${revision}
assembly.skipAssembly: true
maven-assembly-plugin:
descriptorSuffix: jar-with-dependencies
mainClass: ${exec.mainClass}
lombok:
verbose: true
addOutputDirectory: false
sourceDirectory: ${project.basedir}/src/main/java
testSourceDirectory: ${project.basedir}/src/test/java
delombokedSourceDir: ${project.build.directory}/delombok
origSourceDir: ${project.basedir}/src/main/java
sourceDir: ${origSourceDir}
argLine: ${maven.surefire.argLine}