Questions tagged [build-script]

204 questions
2
votes
0 answers

Get Gradle build script repositories by name in other gradle file

My gradle project structure is like so: project │ gradle.properties │ build.gradle │ └───common-config │ common-buildscript.gradle │ common-java.gradle File…
hydradon
  • 1,316
  • 1
  • 21
  • 52
2
votes
2 answers

Adding dependency gives error: 'react-scripts' is not recognized as an internal or external command, operable program or batch file"

Does anyone else get this issue? When i go to create a new project using create-react-app, and i add any dependency to it other than the stock ones, i.e. react-redux, redux, react-router-dom, i get the following error: 'react-scripts' is not…
Strahinja Ajvaz
  • 2,521
  • 5
  • 23
  • 38
2
votes
1 answer

com.google.appengine:appengine:+ vs com.google.cloud.tools:appengine-gradle-plugin:+

I am new to gradle concept. I'm doing gradle for app engine (I don't know maven or ant) and I gone through in [https://cloud.google.com/appengine/docs/standard/java/tools/gradle] but I can't able to understand the difference between the: buildscript…
Prakash
  • 630
  • 3
  • 10
  • 20
2
votes
2 answers

Copy only executable files (cross platform)

I want to copy executable files from one directory to another. The source directory includes all sorts of files I don't care about (build artifacts). I want to grab only the executable files, using a bash script that works on both OS X and Linux. By…
hasen
  • 161,647
  • 65
  • 194
  • 231
2
votes
1 answer

How to correctly setup my post-build script in visual studio

So I'm currently trying to build a .lib file out of my exe utilizing visual studio build scripts as suggested by the accepted answer to this post: Linking to multiple .obj for unit testing a console application. Basically, the post-build script they…
Jason
  • 2,198
  • 3
  • 23
  • 59
2
votes
1 answer

"The project does not have a build script" error

I am using Net Beans (v8.0.2.) Previously there was no such problem in this project but after working a few hours on my project I tried to test it as a jar again. I pressed "clean and build" and I received "the project does not have a build script"…
WVrock
  • 1,725
  • 3
  • 22
  • 30
2
votes
2 answers

Checkout using gradle script

I am new to gradle.I want to checkout remote repository using gradle script. It is possible to run shell command Inside gradle task to clone remote repository with datetime stamp shell commands.
Ragubathi U
  • 321
  • 2
  • 3
  • 18
2
votes
0 answers

Build Script to write to modulemap file to silence "Missing submodule" warning

I am developing a framework, and would like to include my files as submodules. I am currently running a build script to output a universal fat framework that can run on all architectures. However, the framework's module.modulemap file always comes…
arc4randall
  • 3,275
  • 3
  • 27
  • 40
2
votes
1 answer

mysql script of scripts

I have a database that I need to maintain in both oracle and mysql. The data insert script of scripts looks like below. Of course Mysql uses source while oracle uses @ In all other respects the scripts invoked and their order of invocation are…
user390028
  • 21
  • 1
2
votes
2 answers

How to use buildscript dependencies in custom classes?

I am using a couple of helper classes with my build script, the folder structure looks like buildSrc -src -main -groovy GitUtils.groovy build.gradle In GitUtils I am trying to import a couple of classes (from…
sydd
  • 1,824
  • 2
  • 30
  • 54
2
votes
1 answer

gitlab CI build script syntax error

I'm trying to run a build script in Gitlab CI but it complains about a syntax error that I don't understand. This is the script I have configured in Gitlab: # test syntax of all *.php and *.ctp files for f in $(find . -name "*.php" -or -name…
nucka
  • 41
  • 4
2
votes
2 answers

SCons to build hierarchical directory structure

Directory Structure: WorkSpace/root_dir |_ SConstruct |_ multipy |_ include |_ mul.h |_ src |_ mul.cpp |_ SConscript |_ sum |_ include |_ sum.h |_ src |_ sum.cpp |_ SConscript |_ src_main |_ main.cpp |_…
2
votes
1 answer

How to configure HTML5Boilerplate to output quotes correctly when using PHP?

OK, so I'm using HTML5 Boilerplate to minify css, js and html which is placed within my PHP files. Using the build script I can successfully create a publish folder and the css and js and even the php code is minified. Good so far. However, there is…
SH_
  • 266
  • 2
  • 3
  • 17
2
votes
1 answer

XCode app store build - new target or configuration?

I have an app with 3 targets. Or schemes. Each target have two configs, dubug and release. I am building it in command line using build script. For ad hoc release I use the configuration 'release'. But what about when make an appstore build. Whats…
karim
  • 15,408
  • 7
  • 58
  • 96
2
votes
1 answer

H5BP Build Script Issue

Every time I try to use HTML5 Build Script I get this errors: -js.main.concat: [echo] Concatenating Main JS scripts based on index.html... [concat] /Volumes/[...]/intermediate/java.lang.NullPointerException does not exist. [concat]…
Juan Ignacio
  • 3,217
  • 8
  • 33
  • 53