On Mon, Jul 14, 2008 at 1:10 PM, fuppes <[EMAIL PROTECTED]> wrote:

> when I create several profiles for my environments (e.g. integration_test,
> system_test, user_test, ...) and i perfrom the build, how do I seperate the
> builds in my repository? (because the packages {ear, war} are differend
> because i added dependencies to the pom according to the environment)

You can use a classifier to identify the different artifacts.  The
classifier will appear after the version number in the filename.

Configuration varies depending on what type of artifact you're
building.  Here's an example with the war plugin:

         <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <configuration>
              <classifier>itest</classifier>
            </configuration>
          </plugin>

-- 
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to