-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
54 lines (49 loc) · 1.86 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opendaylight.lispflowmapping</groupId>
<artifactId>lispflowmapping-commons</artifactId>
<version>1.12.0-SNAPSHOT</version>
<relativePath>commons/parent</relativePath>
</parent>
<artifactId>lispflowmapping-all</artifactId>
<packaging>pom</packaging>
<!-- Used by Sonar to set project name -->
<name>lispflowmapping</name>
<modules>
<module>commons/parent</module>
<module>commons/build_tools</module>
<module>commons/unittest_tools</module>
<module>artifacts</module>
<module>mappingservice</module>
<module>features</module>
<module>lispflowmapping-karaf</module>
<module>integrationtest</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<!-- Downgrade javadoc plugin, as 3.1.0+ breaks with maven.compiler.release=11 + javadoc:aggregate -->
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- <plugin>
In this project we want to automatically sort all poms, thus we
add the invocation of this plugin to the root parent. Configuration is in
odlparent.
<groupId>com.google.code.sortpom</groupId>
<artifactId>maven-sortpom-plugin</artifactId>
</plugin> -->
<plugin>
<!-- Check for coding style violations. Configuration in odlparent. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>