deployment

Can Nexus or Artifactory store simple tar.gz artifacts?

江枫思渺然 提交于 2019-12-12 07:41:52
问题 I have cloud servers located in separate data centers across the world. Each data center is separate from the others. I'm looking for an easy way to deploy artifacts to individual clusters of servers (that may be running different versions of software i.e. a dev, test, and production cluster) in each of these regions with ease and consistency. It seems to me that an artifact server is what I need because I could execute an install script on the cloud server, which pulls down the correct

Maven deploy:deploy using -DaltDeploymentRepository

大城市里の小女人 提交于 2019-12-12 07:39:13
问题 I have maven projects and I want to deploy my artifacts on internal nexus repository which is configured to have my snapshots and releases on two separate places. So I can not use 'distributionManagement' as this would hardcode the location. So I have defined couple of in my settings.xml say 'releaseRepository' and 'snapshotRepository' and each have parameter 'release' which should be set to 'true' for releases and 'false' for snapshots. I am running my build with following command to release

Deploy XBAP Application?

ぐ巨炮叔叔 提交于 2019-12-12 07:38:57
问题 We have a WPF Application that has a two flavors with a consistent UI etc,one that runs from a Windows OS Desktop and one that is supposed to run as an XBAP application. Currently I am publishing the XBAP application to my localhost machine IIS (Windows XP Pro),Also I have enabled full trust in my scenario as it is needed(Microsoft .NET Framework 2.0 Configuration,URL Full trust) + pfx file(for my machine name) that gets installed when a user on another machine types the URL from the IE

How to deploy to Tomcat from NetBeans?

感情迁移 提交于 2019-12-12 07:33:53
问题 I've added Tomcat in the "Tools > Servers" menu and as you can see it appears in the list of servers: But when I try to run my project, I cannot select Tomcat! The drop-down with servers is empty. I tried it with NetBeans 6.8 and 6.9 Beta. Any idea? The end: I've used the wrong archetype so that NetBeans decided that Tomcat is not capable to execute it. 回答1: When you create a Maven based web app project, you specify the spec version of the project as you create it. image of the Maven web App

Heroku Cannot GET /

浪子不回头ぞ 提交于 2019-12-12 07:25:44
问题 I am new to Heroku and believe I am following all of the steps outlined on Heroku's website to deploy via node.js – https://devcenter.heroku.com/articles/getting-started-with-nodejs – but despite indications of success, I only see this in the browser when I go to my newly-generated herokuapp.com site. Cannot GET / No errors when executing git push heroku master My Procfile is simply web: node app.js I dont quite understand dynos yet, but there seems to be one running: heroku ps === web (1X):

Azure Continuous Deployment from Visual Studio Team Services with multiple projects

强颜欢笑 提交于 2019-12-12 07:18:29
问题 While using Github (or anything other than Visual Studio Team Services) I can use the following page to customize deployment: https://github.com/projectkudu/kudu/wiki/Customizing-deployments I'd like to customize my deployment as I currently have both a web app and a web api project. I want the web app to be deployed, as default it deploys the web api project. Using project Kudu the settings (.deployment file or even better, the app settings on Azure itself) works great, but not when you

What's the foolproof way to tell which version(s) of .NET are installed on a production Windows Server?

China☆狼群 提交于 2019-12-12 07:08:09
问题 This question is not so much programming related as it is deployment related. I find myself conversing a lot with the group in my company whose job it is to maintain our production Windows servers and deploy our code on them. For legal and compliance reasons, I do not have direct visibility or any control over the servers so the only way I can tell which version(s) of .NET are installed on any of them is through directions I give to that group. So far, all of the methods I can think of to

How to redeploy artifact with liberty-maven-plugin?

馋奶兔 提交于 2019-12-12 06:36:09
问题 I have IBM Liberty server running on my machine and want to redeploy my WAR using corresponding maven plugin. The documentation says that there are goals like deploy , undeploy , install-apps . Currently I am using <plugin> <groupId>com.ibm.websphere.wlp.maven.plugins</groupId> <artifactId>liberty-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>install-apps</id> <phase>install</phase> <goals> <goal>install-apps</goal> </goals> </execution> </executions>

How to config tomcat like this in IDEA?

倾然丶 夕夏残阳落幕 提交于 2019-12-12 06:35:28
问题 When I use the eclipse + tomcat, I can set "Use Tomcat installation" as the deployment location. I want ask whether it's possbile to config it in IDEA. 回答1: If you configure your Tomcat application server like shown in the screenshot, IDEA will use the Tomcat binaries from "D:\Programme\apache-tomcat-8.0.15\bin" and the Tomcat configuration from "D:\catalina-base-idea\conf". When you run "yourWebApp", IDEA will create a directory structure in the folder "\system\tomcat". This is the place

How to push to local and remote Maven repository using uploadArchives?

情到浓时终转凉″ 提交于 2019-12-12 06:32:12
问题 I came across gradle publishToMavenLocal as part of the "maven-publish" plugin which installs a build into the local ~/.m2 folder. Since I am still using gradle uploadArchives I wonder if there is something similar which would allow to choose between local and remote deployment? A manual way to configure the local Maven repository is the following: uploadArchives { repositories { mavenDeployer { repository url: 'file://' + new File( System.getProperty('user.home'), '.m2/repository')