Build-tools are tools designed to help and automate the process of compiling, packaging and deploying software.
Questions tagged [build-tools]
421 questions
0
votes
2 answers
Is there a way by which i can automatically add dependencies based on the jar files present in my build path using maven?
I have a j2ee project which is having many jar files attached to it, now i want to convert it to a maven project, is it possible to get all the dependencies of the attached jar files in the pom.xml automatically without adding them one by one…

Sujal Mandal
- 975
- 1
- 14
- 29
0
votes
1 answer
--core-library error with build tools android (Eclipse)[solved with android studio]
I am trying to build an apk with xmlParserAPIs-2.6.2.jar using eclipse without Maven. But unfortunately it gives following error.
trouble processing "javax/xml/parsers/DocumentBuilder.class":
Ill-advised or mistaken usage of a core class (java.* or…

MohK
- 1,873
- 1
- 18
- 29
0
votes
1 answer
makeobj command not found error
I'm trying to run make command on a new Mac machine (OSX).
shubham@IN:~/code/xps/bus_boarding_paper$ make
-bash: makeobj: command not found
My Makefile is as follows:
title=bus_boarding_paper
target=$(title).pdf
all: pdf
bus_boarding_paper.pdf:…

Shubham Chaudhary
- 47,722
- 9
- 78
- 80
0
votes
1 answer
Composer custom repositories local AND remote
We are using custom repositories that are not held on Packagist, and thus need to use composer's "repositories" key:
{
"type": "vcs",
"url": "https://github.com/name/repo"
},
However we also want to develop these locally before pushing them…

M1ke
- 6,166
- 4
- 32
- 50
0
votes
0 answers
Detect non ASCII symbols in C# source code during build
I have a stupid problem - sometimes I have an identifier is source code which starts with "с" (russian letter which looks like english "c", and is located on the same button on keyboard!). Since these two look like it is a same letter I cannot see…

DarkDeny
- 1,750
- 2
- 21
- 31
0
votes
0 answers
In Gradle or Maven, within one Eclipse project, can I easily build two servers pulling in a common source folder?
I'd like to have roughly the following source setup, within one project in Eclipse:
Both server1 and server2 depend on common.
Is this possible to achieve easily and without later problems, in either Gradle or Maven?
Many thanks!

Jan Żankowski
- 8,690
- 7
- 38
- 52
0
votes
1 answer
build tools 21.1.1 proguard not recognizing `-keep` and rules
Warning:library class org.apache.http.conn.ManagedClientConnection extends or implements program class org.apache.http.HttpClientConnection
despite having -dontwarn org.apache.** in my proguard rules file
Warning:org.joda.time.Weeks: can't find…

CQM
- 42,592
- 75
- 224
- 366
0
votes
1 answer
SVN Operations from ANT Build Tool Not Working for "svn://" protocol
My build.xml code is below
>

Elati Reddy
- 3
- 4
0
votes
1 answer
ANT Script to Compile/Build Multiple Projects
I want to Compile 2 projects in my workspace, in which projectB is dependent on projectA.
ProjectA
|----src
|----build.xml
ProjectB
|----src
|----build.xml
To Say I'm importing some packages from ProjectB. Now I have 2 Tasks
How do I Compile…

Elati Reddy
- 3
- 4
0
votes
1 answer
Library projects not recognized in Android with latest android tools/sdk updates
I have basically just downloaded the newest android and eclipse bundle from Google, and upgraded the sdks to the newest versions. As well as installed the adt plugin.
Well... now all content of any library projects wont get recognized.
They are…

Andreas Rudolph
- 1,226
- 19
- 28
0
votes
1 answer
java.lang.NoClassDefFoundError when running ant
I'm using some external jar files in my program. One of this jar is created by me. When I'm using this jar file in an eclipse project it is working fine. But when I'm trying to do the same using ant it is showing NoClassDefFoundError. It is not been…

Shubhasmit Gupta
- 421
- 1
- 4
- 13
0
votes
1 answer
Extra but important items in Maven for a Java Project
I'm restructuring an existing project to the Maven Standard Structure and don't really know where to put certain items.
For example, I have a directory that contains a group of Java Classes that is used to append a toString() to other Classes. I'm…

Opzoleet
- 38
- 1
- 8
0
votes
2 answers
Building a jar and loading Properties/Config file from file system
I need to keep a property file in a filesystem and it must be included when I'm building my project. I have a ANT script to build it my program as .jar, but my jar file don't have any symptoms of referring to that config file when i use it in a app…

Karthick Radhakrishnan
- 1,151
- 3
- 12
- 32
0
votes
0 answers
Build tool for HTML Template developer. Any?
I am finding a build tool that help me to build the html template files to complete html. Like this:
header.tmp
Hello world
footer.tmp
index.tmp
{{header.tmp}}
Hello…

Tony Dinh
- 6,668
- 5
- 39
- 58
0
votes
1 answer
Scons: Build website based on RSS-Feeds
I want to program a build script which shall do the following thinks:
Download various RSS feeds from the Internet
Generate a static website based on the items found in the RSS feeds (one site per RSS item)
First I thought of using scons to do the…

Stephan Kulla
- 4,739
- 3
- 26
- 35