blob: a8c989feb73100afc16156e803565e6b7e0e4de9 [file] [log] [blame]
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -04001<?xml version="1.0"?>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)b46d8632019-03-15 12:25:28 -04005
6 <parent>
7 <groupId>org.onap.ccsdk.dashboard</groupId>
8 <artifactId>ccsdk-app-parent</artifactId>
Kotagiri, Ramprasad (rp5662)4da66182020-03-02 15:18:48 -05009 <version>1.3.1-SNAPSHOT</version>
Timoney, Dan (dt5972)b46d8632019-03-15 12:25:28 -040010 </parent>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -040011
Nicolas Huc1918972017-10-06 10:28:45 -040012 <groupId>org.onap.ccsdk.dashboard</groupId>
13 <artifactId>ccsdk-app-overlay</artifactId>
Kotagiri, Ramprasad (rp5662)4da66182020-03-02 15:18:48 -050014 <version>1.3.1-SNAPSHOT</version>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -040015 <packaging>war</packaging>
16 <name>ONAP Operations Manager Dashboard overlay</name>
Nicolas Huc1918972017-10-06 10:28:45 -040017 <description>CCSDK Dashboard web resources</description>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -040018
19 <properties>
20 <encoding>UTF-8</encoding>
21 <!-- Tests usually require some setup that maven cannot do, so skip. -->
22 <skiptests>true</skiptests>
23 </properties>
24
25 <build>
26 <plugins>
27 <!-- Silence Eclipse warnings by declaring Java 1.8 class output format -->
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>3.1</version>
32 <configuration>
33 <source>1.8</source>
34 <target>1.8</target>
35 </configuration>
36 </plugin>
Kotagiri, Ramprasad (rp5662)7019f6d2020-02-13 16:39:57 -050037 </plugins>
Christopher Lott (cl778h)9015d0d2017-08-17 14:52:44 -040038 </build>
39
40 <dependencies>
41
42 <!-- Silence Eclipse warning on JSPs by declaring dependencies -->
43 <dependency>
44 <groupId>javax.servlet</groupId>
45 <artifactId>javax.servlet-api</artifactId>
46 <version>3.1.0</version>
47 </dependency>
48 <dependency>
49 <groupId>javax.servlet</groupId>
50 <artifactId>jstl</artifactId>
51 <version>1.2</version>
52 </dependency>
53 </dependencies>
54
55 <!-- no distributionManagement section; no jars pushed to Maven central -->
56
57</project>