Tagged Questions
0
votes
0answers
22 views
Conditionally Allow Checkin Only if Code Coverage Numbers increase
I am Currently working on a big java project, which needs to be managed in bigger & better ways. It is using SVN , Hudson , Sonar. After multiple checkins in a day , a nightly Hudson build is run ...
0
votes
1answer
25 views
Not able to create javadoc using ANT
I am trying to build my project using ANT. While creating javadocs, I am getting one error as shown below :
If error is not clearly visible in below image refer this : [javadoc] javadoc: error - ...
1
vote
3answers
73 views
JavaScript + css handling - Closure Tools / any other tools?
We do not have a lot of experience in Javascript/CSS world as we do primarily Java EE projects (backends). We usually have webapp/resource directory where is all the JS+CSS content and that`s it.
It ...
6
votes
5answers
135 views
Is Maven suitable for a small Java project?
Being a beginner in Java SE development, I am quite interested in using Maven to manage and organize my project properly.
However, though I am more than willing to learn how to use it, I don't want ...
1
vote
1answer
41 views
How to run maven site along with normal install/package goals
We are trying to generate change log and some other reports using maven. We are using the changelog plugin and site plugin. But We generate the report using the :
mvn clean package site command. Is ...
-1
votes
1answer
188 views
How to run `ant` build-script without setting any environment variable?
I would like to run the ant build-script without installing Java and setting any environment variable like path, JAVA_HOME & ANT_HOME to environment variable.
I have copied already installed ...
0
votes
1answer
99 views
Build only necessary Eclipse RCP plugins for a plugin with Tycho
I'm new in Maven and Tycho and I hope that I'm not ask a silly question. Thanks for reading!!
I'm in a big Eclipse RCP Project with a structure like this:
-plugin 1
|-pom.xml
-plugin 2
|-pom.xml
...
1
vote
4answers
120 views
A make situation! Using 3 programming languages for parts of the program. Which build tool to use? [closed]
Ok! I don't need people to ask why I'm using 3 different programming languages for a relatively simple task... (It's in the coursework specification)
My situation is, I have to write a program. This ...
0
votes
0answers
6 views
Is it possible to create a custom manifest for Dbscripts which is packaged into a product separately using java?
I have a set of DBscripts to be packaged into a product for release.I need to maintain the integrity of my scripts , so that no one changes it.Is there any possible way to create a Custom manifest to ...
0
votes
0answers
206 views
Maven Build is not including .class file in jar
I have looked through everything I can find on StackOverflow and I could not find an answer. I have just built out a new machine and I have projects that compiled and built on previous installations ...
0
votes
1answer
27 views
Java run scrpits generated based on annotation
A have a java - maven project in Intellij.
I want to build Jar file (I can do that) along with .bat scripts that will run this jar with specific Main classes - those classes should be marked with ...
1
vote
3answers
154 views
Dynamic (compile-time generated) Java package name
I am developing a generic Android game engine that will be used in many of my Android apps as the base system. The problem is that in all of my Java files I currently have to hardcode the package name ...
2
votes
1answer
71 views
Check for life-cycle/phase and file existence in Maven and report error
I want to check in Maven if authentication data from property file is provided by developer during application testing if call integration-test life-cycle.
As state common practice it is bad to ...
3
votes
1answer
213 views
Packaging and deployment of Single Page Application with java backend
I'm doing an app that has jee6 backend (json-based api only) and a lot of client side code. It looks like Single Page Application (this cool buzzword these days).
I'm not sure how to structure my ...
1
vote
2answers
64 views
How to print the build target in Java?
Say we have a class PrintTarget with main() inside of it.
Can we build/compile such that , somehow we should be able to send the build-target-name inside of the main. and when the main() is called ...
2
votes
1answer
76 views
Maven builds on file changes
Is there anything already out there that would help with either / both of following?
Perform a Maven install when a file within that module changes
Perform a Maven install on the module and its ...
3
votes
1answer
149 views
Including a jar manifest's classpath in a grails app
I'm writing a grails application (A) that uses a jar (B) from another project. The jar, B, has internal dependancies that are needed at runtime. Here's its manifest:
Manifest-Version: 1.0
...
1
vote
2answers
241 views
Continue where ANT stopped after build error
I have an ant build script that builds many android projects.
I am building all the projects in a specific order given to me by a property in a text file.
The ant build script calls each project's ...
1
vote
1answer
299 views
Reorder compile tasks in gradle's build task
I am trying to build my project that has some java source and clojure source code, in a directory structure like the following:
src
`-- main
|-- clojure
| `-- appc
| `-- core.clj
...
1
vote
1answer
111 views
Make the web application auto-determine and know its version
My team are doing with 2 teams: server team and client team. We at server team will provide APIs for the client team to call. The APIs have many version, so that we need to match the server build and ...
4
votes
1answer
597 views
Gradle: War Task has Conflicting Includes/Excludes
I am trying to build a war file with Gradle, but I'm having an issue excluding one directory and including another that happen to have the same names, but different parent directories.
Please notice ...
1
vote
1answer
91 views
Eclipse custom program to build chain — adding a source file
I'm developing a quite big software for Android in Java (using Eclipse and ADT).
To support my development, I made an own command-line tool that does the following:
Loads and processes certain ...
0
votes
1answer
73 views
Factoring out common elements of Maven pom.xml
I have a number of Maven pom.xml files in various projects that contain a lot of similar configuration (license declarations, plugins, defintion of resource folders etc.)
What is the best approach to ...
2
votes
3answers
569 views
Eclipse Java: Define final variable based on build configuration
I want to have a final variable that is true when I run the Debug version of my project, and false when I run the Run version. I understand I can do this with build configurations but have no idea ...
1
vote
6answers
5k views
How to put all required jars in a lib folder inside the final jar with Maven ?
I am using Maven in my standalone application, and I want to package all the dependencies in my jar file inside a lib folder, as mentioned in one of the answers here:
How can I create an executable ...
0
votes
0answers
99 views
Floating Point Exception when running node during build
During my maven build, I kick off a node.js script. The Maven profile runs a shell/bat (linux/windows) file, and that kicks off the node script.
On my machine it works fine. I am running Ubuntu ...
0
votes
1answer
134 views
Netbeans:Java prevent Folder delete while cleaning project
I am creating a JSF application using Netbeans and i had a download folder called Snap and Files which stores the client uploaded Snaps and Files respectively but when i clean the project whole build ...
1
vote
0answers
316 views
How to run a build process from Java program?
I'm writing an IDE for LaTeX. To build my a LaTeX file, I created another process within my GUI, so if the user hit the button, it will run:
pdflatex myfile.tex
This is the code in Java:
public ...
3
votes
2answers
256 views
generate javascript from java class as a maven build step
I have a java enum that is used in my web application. I also have a lot of javascript code that refers to the values of the enum. It would be ideal If I could generate a javascript file from the enum ...
5
votes
1answer
1k views
Duplicate files in Gradle-built .war file
I'm having a duplicate files issue with my Gradle build script.
My directory structure is the maven standard, plus some extra directories for various build configurations:
/src/main/java
...
6
votes
6answers
621 views
maven - fail build when unit test takes too long
I have in my project a lot of unit tests, written in JUnit and TestNG. The building process is based on maven with surefire plugin.
Is there any way/plugin for maven to fail the build when at least ...
2
votes
2answers
145 views
Warning developers about out of date dependencies
Is there a way in Maven, Hudson, or Sonar to warn on the inclusion of certain out of date artifacts in a build.
For example, consider having a number of internal business jars. Some versions of ...
0
votes
2answers
569 views
External build can't find import
I'm working on an Eclipse RCP project on Eclipse 3.6 that's broken up into 3 Java projects.
Starting from the bottom, gov.bop.rabid.xxx.ui is the RCP project. The other two Java projects are ...
0
votes
1answer
66 views
Is it possible to have a multi-module pom as a module of a parent multi-module pom?
The required structure is like this
Projects/pom.xml
Projects/parent1/pom.xml
Projects/parent2/pom.xml
Projects/parent2/child1/pom.xml
Projects/parent2/child2/pom.xml
parent1 and parent2 are ...
27
votes
4answers
5k views
No key.store and key.alias properties found in build.properties
I am using ant-release to do a 1-step build of my Android app.
My build.properties looks like this:
application.package=xxxxx
key.store=sonr
key.alias=sonr labs
key.store.password=xxxx
...
0
votes
2answers
123 views
Proper way to trigger dependent job execution on Hudson
I have job A that is building after developers commit code (SCM change). I also have job B that should be run once a day (by cron) and it should use the artifact that results from execution of build ...
1
vote
1answer
233 views
Create a new process in current console window
I have a Java application which for example needs to restart itself (but also needs to start other processes). This is currently done by closing the current application and then start a new instance ...
2
votes
1answer
732 views
Copy Ant path to WAR's lib directory
I think this is probably a common use case. I define a set of paths:
<path id="log4j.classpath">
<fileset dir="${log4j.home}">
<include name="log4j-1.2.16.jar"/>
...
1
vote
1answer
601 views
Maven pom.xml - build modules + self build
I have the next project structure:
app
module1
module2
...
moduleN
parent-pom
Project app contains only properties files and JasperReports's reports templates. Pom.xml of app:
<project ...
2
votes
2answers
134 views
Packaging JVM with Application While Maintaining an Automated and Repeatable Build Process
I'm currently working on a project that requires us to package a JRE with our application. I'm normally against this as it makes keeping the JRE patched quite difficult, but in this case it is ...
1
vote
0answers
1k views
jenkins: error during ant build - java.exe not recognized
I've just started setting up a build server, using Jenkins.
Right now i have an extremely vanilla setup. Just trying to get it to run the default target of a specific build file. However whenever i ...
1
vote
2answers
583 views
How to force code style formatting as part of the build?
Is there a way (using ANT), it is possible to automatically reformat code to follow certain conventions?
I have several developers working on a program and would like to guarantee that code ...
0
votes
2answers
853 views
GWT-RPC Unable to access servlet
I integrated my gwt module in to existing web application and deployed on jboss.
when I trying to hit gwt_servlet then I am getting error message on failure method of asynccallback i.e.
The ...
14
votes
6answers
5k views
Understanding Compile- vs Run-time Dependencies
I understand the difference between runtime and compile-time and how to differentiate between the two, but I just don't see the need to make a distinction between compile-time and runtime ...
2
votes
1answer
625 views
How do I call a ruby script as part of the Maven build process?
edit 2: I found the problem. The quick answer is that the lack of an <id> for my newly configured execution was causing the problem. I'll leave the question here in case it helps someone else.
...
3
votes
1answer
335 views
Why does my ANTLR build Ant task fail with “Unable to determine generated class”?
I'm trying to use ANTLR3 task for Ant, but I get an "Unable to determine generated class" build failure message.
A quick research shows that many people have had the same problem, with no solution ...
1
vote
1answer
285 views
hudson : map SVN credentials to emails
I bet this is highlighted in documentation somewhere but I'm a bit lazy right now.
How do we set up mapping from SVN credentials to emails we use in notifications in case Hudson observes a failed ...
3
votes
2answers
1k views
Do not run Spring @Scheduled task on certain machine
Our web app has few scheduled tasks and we like this feature of Spring so much, many have started relying on it. We have a 'pilot' machine which shares the same configuration/db as prod machines. ...
3
votes
2answers
759 views
Exclude test class directory for archiving in Ant
I have created a java library project. The binaries are available at <project-dir>/bin. The test classes are available at <project-dir>/bin/com/myproject/test. I need to exclude archiving ...
2
votes
1answer
1k views
Custom build rules for Eclipse
I have a Java project that uses some autogenerated source code. This source code is produced by a command-line tool --- Bison, actually --- from a special source file.
I would like a way to have the ...