summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/README.md
blob: 1a0798f9c516a821657db0e2b152a3179c4e85aa (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
# ECOMP SDK Web Application Overlay Files

## Overlay Project

This is a Maven project with the ECOMP SDK web application overlay. This 
project has common CSS, JavaScript, JSP and HTML files that are used in 
the AT&T internal version and the open-source version of the ECOMP SDK 
sample web application.  Those specific versions are built using separate 
Maven projects that copy in ("overlay") the contents of this project at 
package time. This is not a stand-alone web application.  

## Release Notes

SDK is currently using AngularJS version 1.4.8 for compatibility with b2b library 
version 1.0.1.  Note that previous versions of the EPSDK web application used  
AngularJS version 1.5.0.

### ONAP Distributions

Version 1.3.0
- [Portal-19] Renaming the Group Id in the POM file to org.onap.portal.sdk
- [PORTAL-17] removing eye.js and utils.js - rework
- [PORTAL-21] Increased Role name size in UI  

Version 1.1.0
[Portal-7] Improvements added as part of the rebasing process
[Portal-10] Enhancing Drill Down Capabilities of EcompSDK Analytics
[PORTAL-17] Remove jfree related items

Version 1.0.0
- Initial release
> you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ============LICENSE_END========================================================= --> <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.onap.appc.parent</groupId> <artifactId>binding-parent</artifactId> <version>1.4.0</version> <relativePath /> </parent> <groupId>org.onap.appc</groupId> <artifactId>appc-metric-bundle</artifactId> <packaging>bundle</packaging> <name>appc-metric-bundle Bundle</name> <description>appc-metric-bundle OSGi bundle project.</description> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>4.2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.onap.appc</groupId> <artifactId>appc-common-bundle</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.6.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Bundle-Activator>org.onap.appc.MetricActivator</Bundle-Activator> <Embed-Dependency>appc-data-lib;scope=compile|runtime;inline=false</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Export-Service>org.onap.appc.metricservice.impl.MetricServiceImpl,org.onap.appc.metricservice.MetricService,org.onap.appc.metricservice.policy.*,org.onap.appc.metricservice.metric.*</Export-Service> <Export-Package>org.onap.appc.metricservice,org.onap.appc.metricservice.impl,org.onap.appc.metricservice.policy,org.onap.appc.metricservice.publisher,org.onap.appc.metricservice.metric</Export-Package> <Import-Package>!groovy.lang,!javax.*,!org.apache.log,!org.apache.log4j.*,!org.codehaus.jackson.*,!org.codehaus.jackson.map.*,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.apache.commons.lang3,!org.codehaus.janino,!org.jasypt.*,!com.ibm.icu.*,!com.sun.faces.*,*;resolution:=optional</Import-Package> </instructions> </configuration> </plugin> </plugins> </build> <version>1.5.0-SNAPSHOT</version> </project>