Update the pom file version to the next SNAPSHOT
[aai/sparky-fe.git] / pom_license.xml
1 <!--
2
3     ============LICENSE_START=======================================================
4     org.onap.aai
5     ================================================================================
6     Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
7     Copyright © 2017-2018 Amdocs
8     ================================================================================
9     Licensed under the Apache License, Version 2.0 (the "License");
10     you may not use this file except in compliance with the License.
11     You may obtain a copy of the License at
12
13           http://www.apache.org/licenses/LICENSE-2.0
14
15     Unless required by applicable law or agreed to in writing, software
16     distributed under the License is distributed on an "AS IS" BASIS,
17     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18     See the License for the specific language governing permissions and
19     limitations under the License.
20     ============LICENSE_END=========================================================
21
22 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <groupId>org.amdocs.aaiee</groupId>
27     <artifactId>sparky-fe-license</artifactId>
28     <version>1.0.0</version>
29     <name>Sparky FE - NPM Extensions</name>
30     <url>http://maven.apache.org</url>
31
32     <dependencies>
33     </dependencies>
34
35     <properties>
36         <nexusproxy>${nexusTarget}</nexusproxy>
37     </properties>
38
39
40     <build>
41         <plugins>
42
43             <!-- license plugin -->
44             <plugin>
45                 <groupId>com.mycila</groupId>
46                 <artifactId>license-maven-plugin</artifactId>
47                 <version>3.0</version>
48
49                 <configuration>
50                     <header>LICENSE</header>
51                     <excludes>
52                         <exclude>resources/scss/bootstrap/**</exclude>
53                         <exclude>resources/scss/bootstrap-cust/**</exclude>
54                         <exclude>.idea/**</exclude>
55                         <exclude>dist/**</exclude>
56                         <exclude>node_modules/**</exclude>
57                         <exclude>.npmrc/**</exclude>
58                         <exclude>test/coverage/**</exclude>
59                         <exclude>.vscode/**</exclude>
60                         <exclude>node/**</exclude>
61                         <exclude>target/**</exclude>
62                     </excludes>
63                     <includes>
64                         <include>src/**/*.js</include>
65                         <include>src/**/*.jsx</include>
66                         <include>src/**/*.html</include>
67                         <include>test/**/*.js</include>
68                         <include>test/**/*.jsx</include>
69                         <include>test/**/*.html</include>
70                         <include>tools/**/*.js</include>
71                         <include>*.js</include>
72                         <include>*.xml</include>
73                         <include>resources/scss/**/*.scss</include>
74                     </includes>
75                     <mapping>
76                         <JSX>SLASHSTAR_STYLE</JSX>
77                         <SCSS>JAVADOC_STYLE</SCSS>
78                     </mapping>
79                 </configuration>
80                 <executions>
81                     <execution>
82                         <goals>
83                             <goal>format</goal>
84                         </goals>
85                         <phase>process-sources</phase>
86                     </execution>
87                 </executions>
88             </plugin>
89         </plugins>
90
91     </build>
92 </project>