Integration script to support SOA [closed] - maven

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
In our dev environment we do have couple of services that is dependent on each other, which need to be deployed before we use the system. What would be the best solution. I tried ANT which seems like not a good solution. Thinking to use Maven but not sure where to start. Any Idea?

If you use Maven you can have the different services in different modules that and get them all packaged and deployed before you run a test suite or so. There is not much I can tell you in more detail apart from the fact that there are free books around that should help you with Maven usage.
Of course you can also do all that with Ant or other build systems. However I would definitely at least suggest to use a dependency management system like Ivy if you opt for Ant.

Related

continuous integration tool for VS-built c# project [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
We need to setup a continuous integration infrastructure for a C# project. None of us has anything other than a very few user-side experience with these tools at all.
Our requirements would be:
we need a tool which runs on windows, because we want our project to be csc-built. Building with mono is not an option.
we use an SVN server and it's on linux, it needs to be able to get the source from that.
Could anyone of you more experienced collagues recommend a tool like that? :) Thanks in advance!
CruiseControl is a good choice. Have a look here: http://cruisecontrol.sourceforge.net/

What make you to define a project in maven or gradle [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I have seen "project" (a system) by using maven or gradle contains so many small projects. The projects are not just parallel, but also contains children projects and children's children projects. This makes the "project" structure rather difficult to understand. My question is What make you to define a project in maven or gradle. My answer would be depends on the reusability. It makes sense to break "project" into different modules and keep them really separate, but if this layer or small module is not going be used by many different other modules, it should be just part of the maven/gradle project. what is your opinion on this? thanks.

reactiveui samples [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm really amazed with reactive extensions library created by Microsoft and the MVVM framework 'reactiveui' build on top of it. I would love to use it in my project, but I cannot find any examples of using it in standard applications. I've seen Paul's (creator) blog posts, but what I need is not samples of codes, but sample application.
I want to build windows phone7/ windows 8 application with Reactive-UI, but I would like to know how to exactly use it in the there (not dry 3lines of usage example).
Please let me know if you know any open source examples, where Reactive-UI has been used.
You can check this GitHub repo
In the ReactiveUI.Sample.WP7 folder you can find the Sample application.

Alternative to OSGi? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to implement a remote management system that does the following tasks on remote devices-
1) Install Software,Firmware.
2) Install Upgrades of the Software,Firmware.
3) Monitor the state of the installed software,Firmware.
OSGi can be one of the framework to achieve this, but it only supports bundles written in Java(implementations for C/C++ are available but they are not matured). I was wondering if there are any other alternatives that can manage software written in any language.
I've seen this question come up from time to time, but I don't think there is, and I doubt there will be,especially on mobile devices. Getting an API that 'feels good' regardless of language is pretty much impossible, and you need to interface with how a particular platform handles its updates. Provisioning OSGi components is just fundamentally different than updating an iOS app.
Then again, I'd love to be proven wrong on this one;-)
maybe you could have a look on MEF (Managed Extensibility Framework). Its for dotNet development and similar to OSGi. But I am more familar to OSGi as to MEF so I cannot tell the differences. I only heard from a C# pro that they have MEF instead of OSGi ^^

Should I upgrade to Maven 3? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Are there any compelling reasons for me to upgrade to Maven 3 immediately? Nothing stands out from the release notes.
Have you upgraded to Maven 3 yet? If so, what benefits did you see?
Speed man, speed :) New Maven runs MUCH faster then Maven2.
Just try it:
alias mvn3='M2_HOME=/opt/apache-maven-3.0 /opt/apache-maven-3.0/bin/mvn'
And execute mvn3 clean install in your plain old Maven2 project to feel the difference.
I have upgraded to maven 3. Everything is backward compatible. I have noticed better performance and clear logging. There aren't any compelling reasons yet. However, maven3 has new build phases that should be able to support better plugins with more control. Why not upgrade if everything will still work?

Resources