Questions tagged [build-tools]

Build-tools are tools designed to help and automate the process of compiling, packaging and deploying software.

421 questions
0
votes
2 answers

Missing artifact error for provided scope dependecy in maven 3.1.0

I have a dependency with scope provided in pom.xml file. But m2e give Missing artifact error com.oracle ojdbc6 11.2.0.3 provided
0
votes
1 answer

How do I make my custom targets run only when ant release is run?

I have a standard android generated build script. My custom_rules.xml build script. // More code here // More code here
AppleGrew
  • 9,302
  • 24
  • 80
  • 124
0
votes
1 answer

How to exclude base directory from phing/ant FileSet

I have a phing build target that I want to run on each directory directly under my project base. I'm using a foreach task with a fileset to run the target on each directory. The problem I'm having is that the base directory is included, with a…
dmertl
  • 805
  • 8
  • 13
0
votes
2 answers

Compile Java project of different file formats

I am creating a system that will compile first and second year java programs, at the moment I have it compiling single Java files. As I was starting to try and get the system to compile projects with multiple classes, it accord to me that being…
newSpringer
  • 1,018
  • 10
  • 28
  • 44
0
votes
1 answer

Ant: get directory of file from a **/* fileset selector

I'm trying to fix a bug in the HTML5 Boilerplate ant task. Theres a "manifest" target to automatically create an html5 cache manifest file. line 717 in the build script is the area which has a bug:
LessQuesar
  • 3,123
  • 1
  • 21
  • 29
-1
votes
2 answers

`xcodebuild` for scheme and target options

why xcodebuild building the same application differently for scheme and target options? xcodebuild -target uConnect build Above commands builds with Release config in build folder inside project. xcodebuild -scheme uConnect build Above builds…
Maverick
  • 11
  • 1
-1
votes
1 answer

Visual Studio 2017: build tools for v142 cannot be found error, even though Platform Toolset is set to v141

I'm building an openFrameworks project (using the project generator which generates VS2017 solutions) but am receiving the "build tools for v142 cannot be found" error. Answers across Stack Overflow say to go into Project > Properties >…
A__
  • 1,616
  • 2
  • 19
  • 33
-1
votes
1 answer

Build-time tool to check if async code path performs synchronous I/O

Let's say I have the following program import requests async def foo(): res = await get_resource() status_code = await make_request(res) print(f"status code: {status_code}\n", res) async def get_resource(): # ... with…
ollien
  • 4,418
  • 9
  • 35
  • 58
-1
votes
1 answer

Facing problem in installing mysqlclient in python

I am a beginner in python. I am doing my college project in django-python. I want to use MySQL (phpMyAdmin). I am facing problem in installing mysqlclient. The error is given below... C:\Program Files (x86)\Microsoft Visual…
-1
votes
1 answer

How not to pointlessly rebuild dependancies during javascript developpement?

I am not a professional developer - I'm just a self-taught amateur in the field, and I followed the trends with quite some delay. My history with javascript goes back to when I was 14 years old and randomly opened files on my C:/Windows/ directory…
Loic Coenen
  • 773
  • 3
  • 8
  • 19
-1
votes
1 answer

The main module build tool version is smaller or greater than dependent module build tool version?

I was developing a android application. My configuration are given below: minimum sdk version in 4.4.4 Build tools version =25.0.0 I am adding some addtional third party library as library module to my project and added as dependency in my main…
SIVAKUMAR.J
  • 4,258
  • 9
  • 45
  • 80
-1
votes
2 answers

Why system.out.println changes reflects without building jar?

I am using maven as a build tool and running some integration-test cases. I logged some statements in my test case using System.out.println() and did a mvn verify and even i didn't clean install/package the jar.The changes were reflecting for…
Anand Kadhi
  • 1,790
  • 4
  • 27
  • 40
-1
votes
1 answer

Opening JAR with building-tools?

I am trying to run the JAR "buildtools.jar" but a message keeps popping up: The Java JAR file "BuildTools.jar" could not be launched. in smaller writing underneath: Check the Console for possible error messages. The console says 12/31/14…
-1
votes
1 answer

Ear packing structure for jboss 7

we are using J2EE 1.4, servlet version 1.4 and EJB version 2.1, when i deploy my ear file in jboss 7, which is build by using netbeans 6.9.1. I'm getting exception. Is there any specific deployment configuration for jboss 7, If so kindly help me to…
vairam
  • 471
  • 1
  • 11
  • 26
-2
votes
1 answer

Maven regular expression to match file is not working

I have two files test-200-12-30-2990 and test-project-200-12-30-2990 I am unziping it to corresponding folders. Second task is not working. I want to select the file 'test-200-12-30-2990' Below is the ant build.xml. I am using maven ant plugin…
maven h
  • 1
  • 2
1 2 3
28
29