forked from KeyBridge/package-cwmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
68 lines (56 loc) · 2.07 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
<?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>keybridge.lib</groupId>
<artifactId>cwmp</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>package-cwmp</name>
<description>
The CPE WAN Management Protocol defines a mechanism that encompasses secure
auto-configuration of a CPE, and also incorporates other CPE management
functions into a common framework.
This project includes a set of data description libraries conformant with
the CPE management framework written in Java.
History:
v1.0.0 - first build
v1.0.1 - add xmltype annotations
</description>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<modules>
<module>lib-cwmp-common</module>
<module>lib-tr069-entity</module>
<module>lib-tr104-entity</module>
<module>lib-tr106-entity</module>
<module>lib-tr135-entity</module>
<module>lib-tr140-entity</module>
<module>lib-tr143-entity</module>
<module>lib-tr157-entity</module>
<module>lib-tr181-entity</module>
<module>lib-tr196-entity</module>
<module>lib-tr262-entity</module>
</modules>
<build>
<plugins>
<!--https://stackoverflow.com/questions/22528767/how-to-work-around-the-stricter-java-8-javadoc-when-using-maven-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>${repository.name}</id>
<url>${repository.url}</url>
</repository>
</distributionManagement>
</project>