-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
70 lines (64 loc) · 2.19 KB
/
pom.xml
File metadata and controls
70 lines (64 loc) · 2.19 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
<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>
<parent>
<groupId>net.lecousin</groupId>
<artifactId>parent-pom</artifactId>
<version>20200318</version>
</parent>
<artifactId>core-parent-pom</artifactId>
<version>0.20.7</version>
<packaging>pom</packaging>
<modules>
<module>net.lecousin.core</module>
<module>core.javaee</module>
</modules>
<properties>
<sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
<sonar.test.exclusions>**/src/test/**/*</sonar.test.exclusions>
<sonar.coverage.exclusions>
**/application/launcher/*,
**/application/libraries/classloader/*,
**/ApplicationBootstrap*.*,
**/SplashScreen*.*,
**/ThreadingDebugHelper*.*,
**/TaskMonitoring*.*,
**/DebugUtil*.*,
**/SystemEnvironment.*
</sonar.coverage.exclusions>
<sonar.cpd.exclusions>
**/framework/collections/ArrayUtil.*,
**/framework/collections/LinkedArrayList.*,
**/framework/collections/TurnArray.*,
**/framework/collections/map/*MapRBT.*,
**/framework/collections/sort/RedBlackTree*.*,
**/framework/concurrent/async/AsyncSupplier.*,
**/framework/memory/*ArrayCache.*,
**/framework/io/FileIO.*,
**/framework/io/IOUtil.*,
**/framework/io/PositionKnownWrapper.*,
**/framework/io/SubIO.*,
**/framework/io/FragmentedSubIO.*,
**/framework/io/LinkedIO.*,
**/framework/io/buffering/BufferedIO.*,
**/framework/io/buffering/PreBufferedReadable.*,
**/framework/io/data/BytesBitsBuffer.*,
**/framework/io/data/SingleByteBitsBuffer.*,
**/framework/io/out2in/OutputToInputBuffers.*,
**/framework/io/util/DataUtil.*,
**/framework/math/FragmentedRange*.*
</sonar.cpd.exclusions>
</properties>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>lecousin</id>
<name>Guillaume Le Cousin</name>
</developer>
</developers>
</project>