------ Filtering ------ Franz Allan See ------ 2008-09-05 ------ ~~ Licensed to the Apache Software Foundation (ASF) under one ~~ or more contributor license agreements. See the NOTICE file ~~ distributed with this work for additional information ~~ regarding copyright ownership. The ASF licenses this file ~~ to you under the Apache License, Version 2.0 (the ~~ "License"); you may not use this file except in compliance ~~ with the License. You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, ~~ software distributed under the License is distributed on an ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~~ KIND, either express or implied. See the License for the ~~ specific language governing permissions and limitations ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: ~~ http://maven.apache.org/doxia/references/apt-format.html Filtering Variables can be included in your resources. These variables, denoted by the <<<$\{...\}>>> delimiters, can come from the system properties, your project properties, from your filter resources and from the command line. For example, if we have a resource <<>> containing +-----+ Hello ${name} +-----+ And a POM like this +-----+ ... My Resources Plugin Practice Project ... ... src/main/resources ... ... ... +-----+ Upon calling +-----+ mvn resources:resources +-----+ This will create a resource output in <<>> which contains exactly the same text. +-----+ Hello ${name} +-----+ However, if we add a <<<\>>> tag to our POM and set it to <<>> like this: +-----+ ... src/main/resources true ... +-----+ Our <<>> after calling +-----+ mvn resources:resources +-----+ would be +-----+ Hello My Resources Plugin Practice Project +-----+ That's because the name variable was replaced by the value of the project's name (which was specified in the POM). Moreover, we can also assign values through the command line using the "-D" option. For example, to change the value for the variable <<>> to "world", we can simply invoke this command: +-----+ mvn resources:resources -Dname="world" +-----+ And the output in <<>> would be +-----+ Hello world +-----+ Furthermore, we are not limited to use pre-defined project variables. We can specify our own variables and their values in the <<<\>>> element. For example, if we want to change the variable from "name" to "your.name", we can do so by adding a <<<\>>> element within the <<<\>>> element. +-----+ ... world ... +-----+ But to organize your project, you may want to put all your variables and their values in a separate file so that you will not have to rewrite your POM, or set their values all the time with every build. This can be done by adding a filter. +-----+ ... My Resources Plugin Practice Project ... ... [a filter property] ... ... +-----+ For example, we can separate "your.name" from the POM by specifying a filter file <<>> containing: +-----+ your.name = world +-----+ and adding that to our POM +-----+ ... my-filter-values.properties ... +-----+ <> Do not filter files with binary content like images! This will most likely result in corrupt output. If you have both text files and binary files as resources, you need to declare two mutually exclusive resource sets. The first resource set defines the files to be filtered and the other resource set defines the files to copy unaltered as illustrated below: +-----+ ... ... src/main/resources true **/*.xml src/main/resources false **/*.xml ... ... ... +-----+