Deploying AppFuse app on cloudbees - appfuse

I have searched a lot for this but have not found any documentation or blog post on how to deploy Appfuse app on cloudbees. I am kind of new to all this. Does anyone have any documentation or blog describing step by step about how to deploy Appfuse app on cloudbees?
Please help.
Thanks in advance.

If you can find a tutorial on deploying a WAR that was developed with Maven, that should work for AppFuse.

Related

Unable to download spring security related maven dependencies for a Cloud Foundry application

I am trying to deploying CF application available as the part of OpenSap course from this GitHub URL https://github.com/raepple/cfsectest.git . When I do maven clean install, I got the error as in the screenshot.It tells that it is unable to download some maven dependencies.Any solution to this issue?
There is a partial answer as these Maven dependencies are not available no longer. Please refer this blog for an alternative fix.

jcaptcha dependencies not available

My legacy project is using jCaptcha libraries. While converting to that old project into a maven based project, I learned that jcaptcha is not available in any maven repository.
I am really shocked but wanted to ask if someone had faced the same issue in their projects or not and how they resolved this?
I know that the easy way out is to download the JAR and install that into the local repository but I believe in clean things, specially builds :)
Any help would be appreciated. I have gone through numerous maven repositories but in vain.
Thanks in advance.

Deploying Mule to Tomcat

i'm very new to mule esb. I have some question after try mule.
1.how can i run mule project by Tomcat? (I've try this issue but seem not working : http://www.mulesoft.org/documentation/display/current/Deploying+Mule+as+a+Service+to+Tomcat)
I have error when I starting tomcat like something was wrong.
2.How can I packing mule project to .war? ,I see that my editor(sts) don't think that mule application is a web application but the file path of mule application seem to be similar to maven generate project so... I don't know.
I use mule version 3.4.0
thank you,
First of all, you should use the Mule Standalone, if you can. If you really need to use Tomcat, I suggest you package all the Mule dependencies into the application war with Maven, and not try to work with the jars manually. See the answer by David Dossot here and an example Maven project here. Note that the example project uses Mule 3.1.2, so you probably want to update it a bit.

Maven Project - github

Is it possible to publish your site reports to github? For instance, I run Checkstyle, Findbugs, Cross Reference, and other plugins and would like to have that publicly available. Since my project is already there, I'd like to just keep it there.
With the state of the plugins that exist now, you'd have to do some shimming. The site command (per your comments: wanting to use mvn:site) has a mechanism (stage) for pushing the resulting site somewhere, but it's all mostly predicated on SCP'ing it around to some final destination. For github, I don't think there's any obvious place to land things like that.
The solution would be to write something that extended the site plugin to check in the results to Github using the github pages functionality. Details on the github pages bits are available at http://pages.github.com/. To get there, you'll be writing something that checks in your resulting site to a root branch "gh-pages" and going from there.
There are maven github plugins wich works fine for me.
feature:
deploy artifacts
download artifacts
deploy site to gh-pages
See: https://github.com/github/maven-plugins and fork the example project at https://github.com/kevinsawicki/github-maven-example to try out.
The Maven way to publish your reports would be to build the Maven site and to deploy it using FTP, SCP or DAV.
I don't know if GitHub provides hosting space and supports any of this protocol. If it does, then the following resources will help:
Deploying a Site in the site plugin Usage page
10.6. Deploying Your Project Website
Maven 2: Getting "mvn site:deploy" to work
Releasing Maven projects to Github
Site Distribution in the POM Reference
If it doesn't, better look for another place to host your site.
I'm using this plugin for that: http://synergian.github.com/wagon-git/

How can I automatically upload a release into Codeplex?

I'm imagining something like
msbuild /t:CodeplexRelease
which would build, then upload the outputs to the specified Codeplex project.
Has anyone done this?
Here's documentation on using the "CodePlex MSBuild Tasks" for creating and uploading files for a new release: http://codeplex.codeplex.com/wikipage?title=CodePlexMSBuildTasks&referringTitle=CodePlexAPI
Setting up a continuous integration server for a CodePlex project
SNAK - The Simple NAnt Acceleration Kit
Getting Continuous Integration Working With CodePlex: Part III
that should get you started.
You might be able to write a task that uses WatiN or Selenium, but as far as I know CodePlex doesn't have an API for such automated tasks.