BP 728: added version number to bottom right corner of the app
diff --git a/src/app/app.component.html b/src/app/app.component.html
index cd77ef7..6c89fd2 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -13,4 +13,5 @@
 <div class="mt-7">
     <ok-error></ok-error>
     <router-outlet></router-outlet>
-</div>
\ No newline at end of file
+</div>
+<ok-version-info></ok-version-info>
\ No newline at end of file
diff --git a/src/app/core/components/version-info/version-info.component.html b/src/app/core/components/version-info/version-info.component.html
new file mode 100644
index 0000000..b4cae11
--- /dev/null
+++ b/src/app/core/components/version-info/version-info.component.html
@@ -0,0 +1,14 @@
+<!--
+  /********************************************************************************
+ * Copyright © 2018 Mettenmeier GmbH.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ ********************************************************************************/
+-->
+<div class="version-info mr-1">
+  Version: 0.8.0
+</div>
\ No newline at end of file
diff --git a/src/app/core/components/version-info/version-info.component.scss b/src/app/core/components/version-info/version-info.component.scss
new file mode 100644
index 0000000..729e15d
--- /dev/null
+++ b/src/app/core/components/version-info/version-info.component.scss
@@ -0,0 +1,15 @@
+/********************************************************************************
+ * Copyright © 2018 Mettenmeier GmbH.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ ********************************************************************************/
+.version-info {
+    position: fixed;
+    bottom: 0;
+    right: 0;
+    font-size: x-small;
+}
\ No newline at end of file
diff --git a/src/app/core/components/version-info/version-info.component.spec.ts b/src/app/core/components/version-info/version-info.component.spec.ts
new file mode 100644
index 0000000..d1b911a
--- /dev/null
+++ b/src/app/core/components/version-info/version-info.component.spec.ts
@@ -0,0 +1,34 @@
+/********************************************************************************
+ * Copyright © 2018 Mettenmeier GmbH.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ ********************************************************************************/
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { VersionInfoComponent } from './version-info.component';
+
+describe('VersionInfoComponent', () => {
+  let component: VersionInfoComponent;
+  let fixture: ComponentFixture<VersionInfoComponent>;
+
+  beforeEach(async(() => {
+    TestBed.configureTestingModule({
+      declarations: [ VersionInfoComponent ]
+    })
+    .compileComponents();
+  }));
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(VersionInfoComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/core/components/version-info/version-info.component.ts b/src/app/core/components/version-info/version-info.component.ts
new file mode 100644
index 0000000..5cb6473
--- /dev/null
+++ b/src/app/core/components/version-info/version-info.component.ts
@@ -0,0 +1,24 @@
+/********************************************************************************
+ * Copyright © 2018 Mettenmeier GmbH.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v. 2.0 which is available at
+ * http://www.eclipse.org/legal/epl-2.0.
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ ********************************************************************************/
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'ok-version-info',
+  templateUrl: './version-info.component.html',
+  styleUrls: ['./version-info.component.scss']
+})
+export class VersionInfoComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit() {
+  }
+
+}
diff --git a/src/app/core/core.module.ts b/src/app/core/core.module.ts
index 2c4bfea..5af8d1b 100644
--- a/src/app/core/core.module.ts
+++ b/src/app/core/core.module.ts
@@ -17,6 +17,7 @@
 import { ErrorComponent } from './components/error/error.component';
 import { AboutComponent } from './components/about/about.component';
 import { LoadingSpinnerComponent } from './components/loading-spinner/loading-spinner.component';
+import { VersionInfoComponent } from './components/version-info/version-info.component';
 
 @NgModule({
   imports: [
@@ -26,7 +27,8 @@
   exports: [
     NavigationComponent,
     ErrorComponent,
-    LoadingSpinnerComponent
+    LoadingSpinnerComponent,
+    VersionInfoComponent
   ],
   declarations: [
     NavigationComponent,
@@ -34,7 +36,8 @@
     RedirectComponent,
     ErrorComponent,
     AboutComponent,
-    LoadingSpinnerComponent
+    LoadingSpinnerComponent,
+    VersionInfoComponent
   ],
   providers: [
     { provide: LOCATION_TOKEN, useValue: window.location }