diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2016-08-18 11:25:18 +0800 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2016-08-18 11:25:18 +0800 |
commit | 018986824dcdd2b0f169d81956b5ea76ffe83f58 (patch) | |
tree | 9b95dd4db7e903b922b718b8ee220ae8edc8519f /msb-parent | |
parent | 4143173cd08ef515173e5ad4b4c15d4e9f9f1943 (diff) |
Fix the licences check warning
Change-Id: I5b27e2eadd0e5658add66ff2ef48d9285b0a93b7
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'msb-parent')
-rw-r--r-- | msb-parent/msbparent-lite/pom.xml | 4 | ||||
-rw-r--r-- | msb-parent/msbparent/pom.xml | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/msb-parent/msbparent-lite/pom.xml b/msb-parent/msbparent-lite/pom.xml index a7b68c5..b7852f0 100644 --- a/msb-parent/msbparent-lite/pom.xml +++ b/msb-parent/msbparent-lite/pom.xml @@ -18,13 +18,13 @@ <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>org.openo.oparent</groupId> <artifactId>oparent</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> ---> + <groupId>org.openo.msb</groupId> <artifactId>msbparent-lite</artifactId> diff --git a/msb-parent/msbparent/pom.xml b/msb-parent/msbparent/pom.xml index 36b6c4f..4f03c5e 100644 --- a/msb-parent/msbparent/pom.xml +++ b/msb-parent/msbparent/pom.xml @@ -159,6 +159,17 @@ <targetJdk>1.8</targetJdk> </configuration> </plugin> + + <plugin> + <groupId>com.mycila</groupId> + <artifactId>license-maven-plugin</artifactId> + <version>2.3</version> + <configuration> + <includes> + <include>**\*.java</include> + </includes> + </configuration> + </plugin> </plugins> </build> |