I have two context.xml files in my Java web project:

context.xml.development context.xml.production

and I use maven war plugin to build it.

When I build the project, I'd like maven to copy the proper context.xml to the META-INF directory.

How could I do it? I'm already using profiles in my pom.xml

link|improve this question

64% accept rate
feedback

1 Answer

A combination of maven build profiles and the maven-war-plugin using file filtering to include or exclude the correct files should do the trick.

For example, something like this:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<groupId>com.mycompany</groupId>
<artifactId>myproject</artifactId>
<profiles>
    <profile>
        <id>custom-profile</id>
        <activation>
            <property>
                <name>environment</name>
                <value>production</value>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1.1</version>
                    <configuration>
                        <webResources>
                            <resource>
                                <directory>resources</directory>
                                <excludes>
                                    <exclude>context.xml.development</exclude>
                                </excludes>
                            </resource>
                        </webResources>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
    <profile>
        <id>custom-profile2</id>
        <activation>
            <property>
                <name>environment</name>
                <value>development</value>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1.1</version>
                    <configuration>
                        <webResources>
                            <resource>
                                <directory>resources</directory>
                                <excludes>
                                    <exclude>context.xml.production</exclude>
                                </excludes>
                            </resource>
                        </webResources>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

Then when you run maven be sure to sent the "environment" property appropriately:

mvn clean install -Denvironment=production

link|improve this answer
This will create a context.xml file (without the .<env> suffix)? – Daniel Cukier Jan 20 at 20:57
No, I didn't realize that was needed. Probably the best thing to do would be to put each file in a different directory and name the files "context.xml", then use maven profiles to select the one you want. – BenjaminLinus Jan 20 at 22:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.