Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 2 | <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) | b46d863 | 2019-03-15 12:25:28 -0400 | [diff] [blame] | 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.ccsdk.dashboard</groupId> |
| 8 | <artifactId>ccsdk-app-parent</artifactId> |
Kotagiri, Ramprasad (rp5662) | c73866c | 2020-02-03 13:43:25 -0500 | [diff] [blame] | 9 | <version>1.3.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | b46d863 | 2019-03-15 12:25:28 -0400 | [diff] [blame] | 10 | </parent> |
Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 11 | |
Nicolas Hu | c191897 | 2017-10-06 10:28:45 -0400 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.dashboard</groupId> |
| 13 | <artifactId>ccsdk-app-overlay</artifactId> |
Kotagiri, Ramprasad (rp5662) | c73866c | 2020-02-03 13:43:25 -0500 | [diff] [blame] | 14 | <version>1.3.0-SNAPSHOT</version> |
Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 15 | <packaging>war</packaging> |
| 16 | <name>ONAP Operations Manager Dashboard overlay</name> |
Nicolas Hu | c191897 | 2017-10-06 10:28:45 -0400 | [diff] [blame] | 17 | <description>CCSDK Dashboard web resources</description> |
Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 18 | |
| 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) | 7019f6d | 2020-02-13 16:39:57 -0500 | [diff] [blame] | 37 | </plugins> |
Christopher Lott (cl778h) | 9015d0d | 2017-08-17 14:52:44 -0400 | [diff] [blame] | 38 | </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> |