What does another build tool targeted at Java really get me?
If you use Gradle over another tool, why?
(See also Why use Buildr instead of Ant or Maven)
I have been unable to edit and continue in a project that targets the 4.0 Client Profile however i can if i am targetting the full 4.0 Framework.
I want to release against the client profile to limit the download required to install.
Is there anyway i can build against the client profile but debug agains the full version?
Hi,
Can somebody point me to some tutorials and best practices that show to make a build from source code for a java desktop / jee web application ?
I want to learn what needs to be packaged as a war/jar from source and how it must be structured?
br
/jon
Hi,
Can somebody point me to some tutorials and best practices that show to make a build from source code for a java desktop / jee web application ?
I want to learn what needs to be packaged as a war/jar from source and how it must be structured?
br
/jon
This is a follow-up question to my original query:
http://stackoverflow.com/questions/1791605/how-can-i-use-multiple-projects-to-separate-a-large-asp-net-mvc-site-into-departm
Now that I have this working, is there a way to still have multiple project but not have to reference each child area from the parent project? Ideally I'd like to be able to have multiple, separate and distinct projects that only come together on the production/test machines. I should be able to build and test each "area" separately.
In visual studio or any other IDE, usually there are two build configurations, Debug and Release?
How does the differ? Why sometimes you have compile errors when building in Debug mode, but not when in Release mode, and vice versa?
Hey guys,
I'm having trouble building an Elf file within Eclipse. It seems that everytime I build, a PE / portable executable for windows is created. I've gone into the Binary Parser section and checked Elf Parser while making sure that everything else is unchecked. However, I continue to end up with a PE which I cannot run on Linux.
Any ideas?
Thanks
Hi everryone,
It took me two days to try to build the DevExpress source code to make debugging. But can not do it, anyone know how to debug the DLL which is not?
MQ
Hi
We all ready have build scripts that creates our web application folders very nicely. We create multiple folders for each environment, and then change the configs in those folders according to the environment.
How can we get the same results as what _CopyWebApplication does?
Example:
<MSBuild
Projects="$(SourceCodeCheckoutFolder)\source\UI\$(ProjectName)\$(ProjectName).csproj"
Targets="ResolveReferences; ResolveProjectReferences; _CopyWebApplication"
ToolsVersion="3.5" StopOnFirstFailure="False" RunEachTargetSeparately="False"
</MSBuild
What is the best process where code is checkedin by developers, installer is created by build engineer and release to QA to test the installer.
Should the installer be release to QA without unit testing by Dev. If dev do some changes then they should wait until QA to report bugs.Or if installer first given to dev for unit testing and once they signoff then only it should be release to QA?
In my project, I want to build Windows mobile application into installation files automatically without human click on MS.
How can I achieve it? Please help me! Thanks!
Thinking that the answer to this is pretty obvious but here it goes:
When I am working on a small project for school (in java) I "compile" it.
On my coop we are using ant to "build" our project.
I think that compiling is a subset of building. Is this correct? What is the difference between building and compiling?
Hi, I want to use leiningen to build and develop my clojure project. Is there a way to modify project.clj to tell it to pick some jars from local directories?
I have some proprietary jars that cannot be uploaded to public repos.
Also, can leiningen be used to maintain a "lib" directory for clojure projects? If a bunch of my clojure projects share the same jars, I don't want to maintain a separate copy for each of them.
Thanks
Hi all,
I'm trying to setup a parallel CMake-based build for my source tree, but when I issue
$ cmake .
$ make -j2
I get a jobserver unavailable: using -j1. Add '+' to parent make rule warning. Does anyone have an idea if it is possible to fix it somehow?
In OpenSolaris OS, when I run makefile generated by Eclipse CDT on the Linux OS, I get an error on the first -include line.
The same error was in FreeBSD, and was solved by executing gmake instead of make. In OpenSolaris (just installed) gmake doesn't work (command not found).
What package should I install and how exactly, to build Linux-generated C++ project in OpenSolaris?
We do have hundreds of failed builds in TeamCity (number is especially high because of old retry on fail settings) and now it's a pain to browse history.
I want to clean up only old failed builds, is there anyway to do that in TeamCity? Normal clean-up policy only allows X days before the last successful build sort of clean ups.
I've Googled and poked around the Go website, but I can't seem to find an explanation for Go's extraordinary build times. Are they products of the language features (or lack thereof), a highly optimized compiler, or something else? I'm not trying to promote Go; I'm just curious.
Hi,
I have a jar-file, which I want analyze with findbugs through build.xml. I use "class location =....jar" - pattern. The jar-file contains several folders, but I need to analyze only one folder. How can I specify that ? Thanks in advance !
Hi,
I have a jar-file, which I want analyze with findbugs through build.xml. I use "class location =....jar" - pattern. The jar-file contains several folders, but I need to analyze only one folder. How can I specify that ? Thanks in advance !
I want to use implicit linking in my project , and nmake really wants a .def file . The problem is , that this is a class , and I don't know what to write in the exports section .
Could anyone point me in the right direction ?
The error message is the following :
NMAKE : U1073: don't know how to make 'DLLCLASS.def'
P.S: I'm trying to build using Windows CE Platform Builder .
Hello I have a problem with text-align: left or align: left no matter what I put the text get's stuck on the left side of the page in a big column how this can be fixed ?
example of the code:
<div class="maintext02"><span><p>text</p>
.maintext02 {
font-family:Georgia, "Times New Roman", Times, serif; color:#545454; line-height:25px; font-size:12px;
width:943px;
padding-top:15px;
padding-bottom:15px;
text-align:left;
}
In my Visual Studio 2010 project I have files with .mm file extension, that need to be compiled as normal C++ files. Is there a way to make a build rule for new extensions or something like that? In VS 2008 there were options for that, but they are gone in 2010.