diff options
Diffstat (limited to 'ecomp-sdk/epsdk-app-os')
-rw-r--r-- | ecomp-sdk/epsdk-app-os/README.md | 6 | ||||
-rw-r--r-- | ecomp-sdk/epsdk-app-os/pom.xml | 4 | ||||
-rw-r--r-- | ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/conf/system.properties | 6 |
3 files changed, 10 insertions, 6 deletions
diff --git a/ecomp-sdk/epsdk-app-os/README.md b/ecomp-sdk/epsdk-app-os/README.md index a2db1da1..6ffeee36 100644 --- a/ecomp-sdk/epsdk-app-os/README.md +++ b/ecomp-sdk/epsdk-app-os/README.md @@ -13,7 +13,11 @@ https://www.eclipse.org/m2e-wtp/ ## Release Notes -Version 1.3.0 +Version 1.3.1, 15 October 2017 +- PORTAL-104 Changed the sql connector to Mariadb +- PORTAL-127 Remove GreenSock code from b2b library in SDK + +Version 1.3.0, 28 August 2017 - PORTAL-17 removing eye.js and utils.js - PORTAL-19 Renaming the Group Id in the POM file to org.onap.portal.sdk - PORTAL-34 Restore required properties in fusion.properties file diff --git a/ecomp-sdk/epsdk-app-os/pom.xml b/ecomp-sdk/epsdk-app-os/pom.xml index 61ca6621..2102719c 100644 --- a/ecomp-sdk/epsdk-app-os/pom.xml +++ b/ecomp-sdk/epsdk-app-os/pom.xml @@ -6,14 +6,14 @@ This is NOT the Portal - but it is developed and supported by the Portal team. --> <groupId>org.onap.portal.sdk</groupId> <artifactId>epsdk-app-os</artifactId> - <version>1.3.0</version> + <version>1.3.1</version> <packaging>war</packaging> <name>ECOMP SDK Webapp for OpenSource</name> <description>ECOMP SDK Web Application for public release</description> <properties> <encoding>UTF-8</encoding> - <epsdk.version>1.3.0</epsdk.version> + <epsdk.version>1.3.1</epsdk.version> <springframework.version>4.2.0.RELEASE</springframework.version> <hibernate.version>4.3.11.Final</hibernate.version> <!-- Skip assembling the zip; assemble via mvn -Dskipassembly=false .. --> diff --git a/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/conf/system.properties b/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/conf/system.properties index d988ec21..44f84ce1 100644 --- a/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/conf/system.properties +++ b/ecomp-sdk/epsdk-app-os/src/main/webapp/WEB-INF/conf/system.properties @@ -25,8 +25,8 @@ decryption_key = AGLDdG4D04BKm2IxIWEr8o== #Mysql -db.driver = com.mysql.jdbc.Driver -db.connectionURL = jdbc:mysql://localhost:3306/ecomp_sdk_os +db.driver = org.mariadb.jdbc.Driver +db.connectionURL = jdbc:mariadb://localhost:3306/ecomp_sdk db.userName = userName db.password = password db.encrypt_flag = false @@ -69,4 +69,4 @@ instance_uuid=8da691c9-987d-43ed-a358-00ac2f35685d # app_base_url = https://www.openecomp.org/app_context/ #authenticate user server -authenticate_user_server=http://todo_enter_auth_server_hostname:8383/openid-connect-server-webapp/allUsers
\ No newline at end of file +authenticate_user_server=http://todo_enter_auth_server_hostname:8383/openid-connect-server-webapp/allUsers |