Repository: ode-console Updated Branches: refs/heads/master f6eb8afa0 -> d8cb4dfbf
deployment config added to pom Project: http://git-wip-us.apache.org/repos/asf/ode-console/repo Commit: http://git-wip-us.apache.org/repos/asf/ode-console/commit/d8cb4dfb Tree: http://git-wip-us.apache.org/repos/asf/ode-console/tree/d8cb4dfb Diff: http://git-wip-us.apache.org/repos/asf/ode-console/diff/d8cb4dfb Branch: refs/heads/master Commit: d8cb4dfbfc9373ec76536536ca1b0df0d6806229 Parents: f6eb8af Author: sathwik <[email protected]> Authored: Thu Sep 29 19:57:04 2016 +0530 Committer: sathwik <[email protected]> Committed: Thu Sep 29 19:57:04 2016 +0530 ---------------------------------------------------------------------- pom.xml | 24 ++++++++++++++++++++++++ src/index.html | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode-console/blob/d8cb4dfb/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 21b247e..ef1d1d5 100644 --- a/pom.xml +++ b/pom.xml @@ -63,6 +63,30 @@ under the License. <destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version}</destDir> </properties> + <distributionManagement> + <repository> + <id>apache.releases.https</id> + <name>Apache Release Distribution Repository</name> + <url>https://repository.apache.org/service/local/staging/deploy/maven2</url> + </repository> + <snapshotRepository> + <id>apache.snapshots.https</id> + <name>Apache Development Snapshot Repository</name> + <url>https://repository.apache.org/content/repositories/snapshots</url> + </snapshotRepository> + </distributionManagement> + + <repositories> + <repository> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>https://repository.apache.org/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> + <build> <plugins> <plugin> http://git-wip-us.apache.org/repos/asf/ode-console/blob/d8cb4dfb/src/index.html ---------------------------------------------------------------------- diff --git a/src/index.html b/src/index.html index 1ca17e9..9d16a0b 100644 --- a/src/index.html +++ b/src/index.html @@ -68,7 +68,6 @@ <script src="vendor/jquery.xpath.js"></script> <script src="vendor/vkbeautify.js"></script> <script src="app/dashboard/dashboard.controller.js"></script> - <script src="components/navbar/navbar.controller.js"></script> <script src="app/instance/instance.controller.js"></script> <script src="app/instance/instance.service.js"></script> <script src="app/instance/instanceactions.controller.js"></script> @@ -77,6 +76,7 @@ <script src="app/process/process.service.js"></script> <script src="app/process/processactions.controller.js"></script> <script src="app/process/processlist.controller.js"></script> + <script src="components/navbar/navbar.controller.js"></script> <!-- endinject --> <!-- inject:partials -->
