Questions tagged [build-script]

204 questions
0
votes
4 answers

Could not find the main class error with Ant

It's my first time using Ant and I'm getting a java.lang.NoClassDefFoundError Exception when it tries to run. Here is my Ant build script,
gsgx
  • 12,020
  • 25
  • 98
  • 149
0
votes
1 answer

Ant build trace call to class

My build script is failing because it is building class A before the dependency is built. Is there a way to trace when exactly class A is being loaded during compilation? I know the task which fails but the task is compiling other classes C,D,E and…
fireBand
  • 947
  • 7
  • 23
  • 42
0
votes
1 answer

Does Phantom build system work under Mono?

I'm looking at cross-platform build systems for .Net projects. Phantom looks interesting, however I'm wondering if it will work OK on Linux with Mono. It is built on top of Boo. It seems like Boo has some support in Mono…
ngm
  • 7,277
  • 1
  • 53
  • 62
-1
votes
1 answer

What kind of code element is the 'apply from' part in the gradle DSL closure passed to 'buildscript'?

I'm trying to figure out what kind of code element the apply from is: buildscript { apply from: rootProject.file("gradle/versions.gradle") repositories { google() ... } dependencies { classpath…
goulashsoup
  • 2,639
  • 2
  • 34
  • 60
-1
votes
1 answer

Why does a procedural macro not see environment variables set by dotenv in my build script?

I have a procedural macro crate Proc and binary crate Bin. Bin has a dependency on Proc. Proc needs a filled environment variable to function properly. This is some code inside my build.rs in Bin. Proc can successfully find the env value when using…
J. Doe
  • 12,159
  • 9
  • 60
  • 114
-1
votes
1 answer

npm copyfiles maintain full path

I am trying to copy some patched files from my config to the node modules. I want to maintain the directory path with the file. For example: I am running: copyfiles -u 1 ./config/patches/ ./node_modules/ I expect the files…
Decrypter
  • 2,784
  • 12
  • 38
  • 57
-1
votes
1 answer

Barebones Gradle build from lib dir

I'm struggling to configure a super simple (my 1st ever) Gradle buildscript, that will: Compile all the Groovy code under my src/main/groovy dir; compilation needs to include all the local (not from a repo) JARs stored in my lib/ directory Place…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
-1
votes
1 answer

How to build only specific requirements

we are looking to migrate from cvs to svn/git. But, before picking up one from svn/git I just a question in my mind i.e, for example: developers have 10 requirements. Out of 10 requirements,developers worked on 6 requirements and requested for a…
user3781945
  • 99
  • 1
  • 5
-2
votes
1 answer

How to write a batch file to run and execute the VB6 projects

our project is running in VB6 technology, we want a batch file which will run all our VB6 projects at a short and need to give us the output files. Suppose using Visual Studio we can run the vb project once we build that project we will get the…
1 2 3
13
14