The fileset tag has no wiki summary.
0
votes
1answer
25 views
Groovy: Antbuilder fileset is not created (launched from Jenkins)
I have following code in my script:
def ant_fs = (new AntBuilder())
def fs = ant_fs.fileset( dir: <path> )
fs.each{
println( "Fileset item: $it" )
}
When I launch it from Maven (mvn ... ...
0
votes
1answer
20 views
Copying files matching a regex in ant
I'm having trouble copying some files which match a pattern in my ant script.
I have the following:
<property name="IncludedLocales" value="de_DE|es_ES|fr_FR|it_IT|ja_JP" />
<copy ...
1
vote
0answers
33 views
antbuilder pass fileset as closure
I use Groovy and Antbuilder to copy some files during deployment on my test server. I want to log all files selected to copying. Now I do the following:
ant.sequential{
def fsExes = (new ...
0
votes
1answer
15 views
Ant: fileset: include vs. filename
I would like to know what the difference is between the following
in an build.xml file if any, as to me it seems like they do the
same thing:
1.
<fileset dir="${source}">
<include ...
0
votes
1answer
42 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
188 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
117 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
72 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
398 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
122 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
130 views
maven sources plugin includes configuration
I have a maven project with a non standard configuration:
$> tree
.
├── pom.xml
├── ...
0
votes
2answers
159 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
259 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
75 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
44 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
188 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
39 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
43 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
173 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
87 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
179 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
152 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
200 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
175 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
80 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
147 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
478 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
122 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
2k 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
304 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
149 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
288 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 ...
5
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
155 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
580 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
393 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
186 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
333 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
938 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
860 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
483 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
688 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
177 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
299 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
2k 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 ...