The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
22 views

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 ...
0
votes
2answers
158 views

In Ant, how do I specify files with comma in filename?

Here is an example-target that I tried. Turns out, it wants to delete everything because the comma separates "**/*" and "cover" -- understandable. <target name="clean"> <delete ...
0
votes
3answers
87 views

Custom Maven clean with fileset not working

I have created an additional target directory called "dist" to which I am copying some build artifacts. Because it is not in the default target directories, I add an appropriate to the clean plugin ...
0
votes
1answer
66 views

Apache Ant create new fileset from existing fileset with filenames renamed

I have the following fileset in my Apache Ant build file (BuildFilesetXML.xml): <fileset id="XMLFileset" dir="mydir/myxml"> <include name="**/1.xml"/> <include ...
0
votes
3answers
244 views

Ant absolute path to single file in fileset

I'm using Jenkins with Email-Ext plugin to automate PHP Unit Testing. If the tests failed I want to send a notification email to myself including the zipped test reports. The Email-Ext plugin ...
1
vote
0answers
100 views

Run ant target multiple times but replace fileset it refers to

I have an Ant target which runs unit tests on a fileset with a specific name, hardcoded inside of the target. I would like to call that target multiple times, each time setting the fileset to a new ...
1
vote
1answer
95 views

maven sources plugin includes configuration

I have a maven project with a non standard configuration: $> tree . ├── pom.xml ├── ...
0
votes
2answers
140 views

Concrete5 show fancybox from file set on link click?

I don't know exactly where to start to display files from the file set in order to show a fancybox gallery on click. I would like to have the gallery open from a link. On click show the gallery, aka ...
0
votes
2answers
180 views

jenkins archive artifact excluding all subdirectory

I have a couple of job in Jenkins that archive artifact from the source tree for another job (some unit tests or alike). I have the current situation : top_dir \scripts_dir \some_files ...
0
votes
1answer
67 views

How do I delete files using absolute path in ant?

I want to delete all the files of certain type in in a folder. However, I only have the absolute path to the folder. What can I do? For example, I might want to delete on the .txt files in ...
2
votes
1answer
42 views

Hg select file based on status?

Is there a way to select only those files that have the Modified status? And is it possible to chain the selection to add more specific selectors? I want to export the changes in those Modified ...
2
votes
1answer
154 views

Ant: Delete fileset filenames, but in different directory

So I have a fileset containing files in one directory: <fileset id="modules" dir="${modules.dir}"> <include name="core*.jar"/> <include name="fileset*.jar"/> <include ...
0
votes
0answers
32 views

how to use ant packagemapper

I am trying to write ant script for copying the java source from one folder to another and while copying I want to remove some parent directories in absolute path to have only the package path for ...
-2
votes
1answer
41 views

needed ant copy script to copy package path only [closed]

I have directory structure as below main | \--dir_1 | \--com | \--base | \--test1 | ...
1
vote
1answer
133 views

ant - list all zip files in a specified directory

i am trying to retrieve the list of all zip files present in a directory. i have a directory ${src} which contains some zip files. i am using the follwing code <target name="test"> ...
1
vote
1answer
78 views

Is there a missing file equivalent of erroronmissingdir in Ant?

We have a file set in our Ant build which looks like this: <fileset dir="somewhere/lib" includesfile="third-party-jars.txt"/> Every jar is then spelled out in full in the text file. (The ...
1
vote
1answer
152 views

ANT: several filesets for the javac task

I have a ANT build file with two different filesets: <fileset id="fs1"> <include name="source1\**" /> </fileset> <fileset id="fs2"> <include name="source2\**" /> ...
1
vote
2answers
131 views

Ant: how to delete files that are not present in another directory?

I have two directories, let's call them src and build. My build system works so that for all files with mtime more recent in src than in build it copies the file from src to buid and does some ...
1
vote
2answers
167 views

Include ant modified selector based on condition

I am modifying my exiting ant script to support differential builds. For that I have used modified selector in fileset for finding only modified files. But the problem is when I am doing full build I ...
1
vote
1answer
161 views

How can I reuse multiple zipfileset elements in Ant?

We want to build multiple zip files where some of the files have contents in common with others. Rather than specify the full list of files for each zip (they're actually quite large) I thought I ...
2
votes
3answers
75 views

Why does ANT update the contents of a fileset after it was created, and can I override this?

I think this may be easiest explained by an example, so here goes: <target name="test"> <fileset id="fileset" dir="target"> <include name="*"/> </fileset> ...
0
votes
1answer
131 views

Order of files in a FileSet (phing)

Is it possible to get the files from a phing FileSet in a specific order (0-9 followed by A-Z for example)? Right now it is taking my numbered files in a completely random order. <fileset ...
0
votes
1answer
422 views

Ant, download fileset from remote machine

As I've readen ant doesn't provide 'fileset' attribute when downloading files from remote machine via scp task. It works when sending files from local machine, but It doesn't work when starting in ...
2
votes
1answer
120 views

DirectoryScanner: getExcludedFiles performance issue using ant fileset

Is there a way to speed up the performance of getExcludedFiles()? I've been play around with the fileset patterns, but could not get any improvement. Here is my situation: I have a fileset defined ...
1
vote
1answer
1k views

Adding .class files onto ant classpath for groovc ant task compilation?

I have a project called MyApp in eclipse. I have another project called TestRepository that contains in it, the testcases written for MyApp project. I am trying to compile the testcases and generate ...
0
votes
1answer
289 views

Error creating zip file by refid

I'm trying to create 2 zip files as part of an ant task. Both are similar, but one includes some extra data. So to reduce code I'd like to define a fileset and reference it. The only problem is that ...
1
vote
1answer
146 views

How to detect whether fileset is defined?

My custom NAnt task relies on a certain fileset. It is considered to be defined by the time the task executes. I'd like to make sure fileset was defined before using it. I'm thinking of something ...
1
vote
0answers
274 views

Update fileset using ant dynamically

I would like to create a jar file dynamically depending on selected java modules Here is the part of the ant script which does that. <property name="modules.selected" value="A,C,F" /> <for ...
4
votes
3answers
2k views

How to add all files in a fileset as an argument to the exec task?

I'm trying to provide all *.cpp files in a folder to the c++ compiler through ant. But I get no further than ant giving gpp a giant string containing all the files. I tried to prove it by using a ...
0
votes
2answers
151 views

Why does ant copy old file contents?

I'm having an extremely strange problem with ant. This snippet produces a set of files with the correct names and timestamps, but with obsolete contents. <target name="inflate-workspace"> ...
2
votes
2answers
1k views

Ant unzip task and only extracting files based on another directory

I have a zip file and, separately, a directory that contains some files. From the zip file I'd like to extract only those files that exist in the directory (performing a filename transformation on ...
1
vote
1answer
547 views

Create a fileset from a comma-separated list in a property without losing order

I use a specified property to create fileset: <property name="cases" value="B.java,A.java,C.java" /> <fileset id="casesToBeRunning" dir="${src}" includes="${cases}" /> When ...
2
votes
1answer
339 views

create a fileset of all files matching a pattern, excluding files with a specific sibling file

I would like to create a fileset of files matching a specific pattern, but exclude from this set any files which have a specific other file in the same directory. E.g., I would like a fileset which ...
2
votes
4answers
180 views

Emacs filesets: how to run other (elisp, not shell) commands?

There are 5 Elisp commands that can be run on an Emacs fileset, plus the ability to run any shell command. What about all the other Emacs commands? Just to give one example, it would be nice to be ...
1
vote
2answers
328 views

Use Ant RegEx to find referenced CSS files and then utilize that list as a FileSet

I have a CSS file that I use for testing. It @imports all of my stylesheets: @import "css/structure.css" @import "css/typography.css" @import "css/forms.css" This lets me test the styling and ...
3
votes
2answers
4k views

What's the difference between a nested path and fileset?

I have been googling for the "Differences between fileset and path" article for some time, but have found nothing useful. For example, what is the difference between the following (say, there is a ...
1
vote
1answer
915 views

Turning an ant propertyset into a fileset

I have a propertyset, where the values of the properties in the set specify a list of files I want to include in a jar. But I can't seem to figure out how to build a jar from a propertyset, only a ...
0
votes
2answers
842 views

Ant fileset's “dir” missing from absolute path when using a mapper

I've been trying to write an Ant task to "compile" Sass scripts in my project using the apply task but I kept getting a "No such file or directory" error. I thought it might have been caused by ...
0
votes
2answers
1k views

Ant: use include and exclude together

OK, this seems like it should be really simple. I'm using Apache Ant 1.8, and I have a target which does: <delete file="output/program.tar.bz2"/> <tar basedir="input" ...
1
vote
2answers
471 views

How do I avoid symlinks using an Ant FileSet?

I have a directory tree that includes a symlink to . (the current directory). When I attempt to iterate over this using an Ant FileSet, I get the following error: Caught error while checking for ...
6
votes
1answer
2k views

Ant: using Filelist as Fileset in Uptodate?

a target of build.xml creates a Zip file. To avoid creating the Zip if no file has been updated, I'd like to check for updates beforehand. AFAIK, "uptodate" is the task to use. Here is the relevant ...
3
votes
2answers
663 views

Fileset/patternset's refid attribute isn't expanded. How would you write a target that operates on an arbitrary set of files?

I have a set of targets that each do essentially the same thing except each contains a specific patternset on which to perform its tasks. I want to collapse these targets into a single "reusable" ...
0
votes
1answer
175 views

Nant Build script undifined Issue

I have the following code in a nant build script: <project name="fgs"> <property name="build.dir" value="build"/> <property name="build.bin.dir" value="${build.dir}/bin"/> ...
5
votes
1answer
4k views

Copy content of subfolders with Ant

How can I copy content of all subfolders of given folder using Ant? i.e. I have such folder structure folder/ folder/sub1/1.txt folder/sub1/f1/1.txt folder/sub2/2.txt ... I don't know exact ...
1
vote
1answer
297 views

Using a Clover <fileset> on Hudson

We're trying to limit Clover to a certain package and therefore have a <fileset> definition in our Ant build file. Everything works fine from the command line (when we specify our known Ant ...
1
vote
2answers
1k views

How do I make a fileset from a comma-separated list of directories in Ant?

In an Ant target I get a property, containing the list of directories to be included in further action (copying, filtering, etc.). It looks like this: directories=dir1, dir2, dir3 I need a way to ...
0
votes
3answers
350 views

Compiler warnings plugin: Fileset excludes

We are using Hudson as our build machine and I am trying to configure the excludes fileset for the Compilier Warnings plugin. Hudson parses the build log to determine warnings/errors and our Clover ...
1
vote
4answers
786 views

Ant Fileset Expansion doesn't work

I get a very confusing reaction from my ant build-file and I'm wondering whether I'm just not clever enough or this might actually be a bug. I've got the following property set globally in my ...
1
vote
1answer
1k views

Ant: Concatenate properties from a fileset

I am trying to do the following in ANT but I am stuck. Read which projects are installed in my project workspace. workspace buildtools build.xml project1 build.xml ...
1
vote
1answer
769 views

How to exclude a directory which is already included in an Ant FileSet?

I am using the jar task in ant and wish to exclude a certain directory. The structure of the directories is something like: food |_ fruits |_ apples |_ bananas (having been made ...

1 2