blob: b74783ad2681b5f2b253cfceb3ba9f7c13ec204a (
plain)
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
|
<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>org.openecomp.portal</groupId>
<artifactId>ecompportal-FE-common</artifactId>
<version>1.1</version>
<!-- This file exists primarily to allow easy import of this project into Eclipse. -->
<build>
<plugins>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.10</version>
<configuration>
<encoding>UTF-8</encoding>
<licenseName>my_license</licenseName>
<licenseResolver>${project.baseUri}/license</licenseResolver>
<inceptionYear>2017</inceptionYear>
<organizationName>AT&T Intellectual Property</organizationName>
<projectName>ECOMP Portal</projectName>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<processStartTag>================================================================================</processStartTag>
<sectionDelimiter>================================================================================</sectionDelimiter>
<processEndTag>================================================================================</processEndTag>
<roots>
<root>client/app</root>
</roots>
<excludes>
<exclude>*.png</exclude>
<exclude>*.drl</exclude>
<exclude>*.gif</exclude>
<exclude>*.jpeg</exclude>
<exclude>*.jpg</exclude>
<exclude>*.bmp</exclude>
<exclude>*.ico</exclude>
<exclude>*.svg</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>first</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</project>
|