summaryrefslogtreecommitdiffstats
path: root/version.properties
blob: f841ab77d366a0370f6b51fc335bbacb499b78ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
###########################################################
# Versioning variables
# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... )
# because they are used in Jenkins, whose plug-in doesn't support

major_version=0
minor_version=1
patch_version=0

base_version=${major_version}.${minor_version}.${patch_version}

# Release must be completed with GIT information # in Jenkins
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT
>; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { SimpleNotificationsModule } from 'angular2-notifications'; import { BootstrapModalModule } from 'ng2-bootstrap-modal'; import { HomeModule } from './home/home.module'; import { AppComponent } from './app.component'; import { AppRoutingModule } from './app.routing'; import { SharedModule } from './shared/shared.module'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { HashLocationStrategy, LocationStrategy } from '@angular/common'; import { NoopAnimationsModule } from '@angular/platform-browser/animations'; import { RouterModule } from '@angular/router'; import { TestComponent } from './test/test.component'; import { AboutUsComponent } from './about-us/aboutus.component'; import { NgProgressModule } from 'ngx-progressbar'; import { LoginGuardService } from './vnfs/LoginGuardService/Login-guard-service'; import { ConfirmComponent } from './shared/confirmModal/confirm.component'; import { NgxSpinnerModule } from 'ngx-spinner'; @NgModule({ declarations: [AppComponent, TestComponent, AboutUsComponent, ConfirmComponent], imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(), NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, BootstrapModalModule, NgxSpinnerModule], exports: [RouterModule], providers: [{ provide: LocationStrategy, useClass: HashLocationStrategy }, LoginGuardService], entryComponents: [ConfirmComponent], bootstrap: [AppComponent] }) export class AppModule { }