-
Notifications
You must be signed in to change notification settings - Fork 76
/
pom.xml
111 lines (103 loc) · 4.67 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
<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>com.github.kklisura.cdt</groupId>
<artifactId>ctd-java-client-root</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ctd-java-client-root</name>
<description>Chrome DevTools java client</description>
<url>https://github.com/kklisura/chrome-devtools-java-client</url>
<modules>
<module>cdt-protocol-parser</module>
<module>cdt-java-protocol-builder</module>
<module>cdt-java-client</module>
<module>cdt-examples</module>
</modules>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Kenan Klisura</name>
<email>kklisura@hotmail.com</email>
</developer>
</developers>
<organization>
<name>Kenan Klisura</name>
<url>https://kklisura.com</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.inceptionYear>2018</project.inceptionYear>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<!-- This plugin is also present in cdt-java-client, so be sure to copy any changes here to that module as well -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<executions>
<execution>
<id>update-file-header</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
</execution>
<execution>
<id>attach-licenses</id>
<goals>
<goal>update-project-license</goal>
<goal>add-third-party</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>${project.basedir}</outputDirectory>
<canUpdateCopyright>true</canUpdateCopyright>
<failOnMissing>true</failOnMissing>
<licenseName>apache_v2</licenseName>
<useMissingFile>true</useMissingFile>
<excludes>
<exclude>**/*.json</exclude>
</excludes>
<roots>
<root>src/main/java</root>
<root>src/test</root>
</roots>
<licenseMerges>
<licenseMerge>The Apache Software License, Version 2.0|Apache License, Version 2.0|Apache
Public License 2.0|Apache 2|Apache 2.0|Apache License 2.0|Apache License
</licenseMerge>
<licenseMerge>Eclipse Public License v1.0|Eclipse Public License 1.0|Eclipse Public License
- v 1.0
</licenseMerge>
<licenseMerge>BSD 3-Clause License|BSD|New BSD License</licenseMerge>
<licenseMerge>Dual license consisting of the CDDL v1.1 and GPL v2|CDDL+GPL</licenseMerge>
</licenseMerges>
</configuration>
</plugin>
<plugin>
<!-- This plugin is also present in cdt-java-client, so be sure to copy any changes here to that module as well -->
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>