0
votes
1answer
20 views

Maven resource filtering - Spring application

I'm just wondering, at what point does the Maven resource filtering mechanism inject values from a profile into a target file? I'm asking because my application is using Spring, and depending on a JVM ...
0
votes
1answer
33 views

Maven Profiles Jar issues

I have dev/XYZ.properties file, i am building a jar file using maven -P dev install. How can I place the property file in child.jar/META-INF/XYZ.properties file
0
votes
1answer
26 views

Maven Resource Filtering Breaking Downloads

I have a Maven/Java application. Part of the application allows you to download some documents. Here is the project setup. +src +main +resources +downloads ...
0
votes
1answer
142 views

maven, xml files for different profiles

I have maven pom with 2 profiles: dev and production I have some xml files in my project. For example persistence.xml . Settings for dev and production environments are different I need a way to ...
0
votes
2answers
71 views

Using profiles to control which Maven modules are built

I have the following XML in my maven POM.xml: <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> ...
0
votes
1answer
40 views

How to compile a maven project for different version of jdk with profiles?

How compile a maven project using different jdk with profiles? I would like specify different profiles in my POM file, and run command mvn with profile name. Help me, I'm novice. A complete example ...
1
vote
1answer
106 views

Reusing maven configuration

What is the best way to create reusable dependency definitions and profiles in maven? I would like to externalize dependencies and profiles for integration tests to a separate pom, which can be ...
5
votes
1answer
485 views

Skinning Android app with Maven build profiles

I've got mavenized Android application and customer wants support for the skinning at build time. For example: mvn clean install -P Developer, mvn clean install -P Customer1, mvn clean install -P ...
2
votes
1answer
336 views

Confused that order matters when defining conditional profiles in maven

I have a configurable property line.ending that I used during the assembly phase of the building of my project to specify the line ending type of my application property files. For that I have created ...
2
votes
1answer
1k views

Generating custom WAR archives with Maven profiles

I need to produce different WARs from a Maven project, according to values that vary between profiles. For some files, I have default values that may be overwritten by configuration. For example, I ...
2
votes
3answers
963 views

Builds for different platforms the Maven way

I have a project with a submodule a:jar which needs a different set of dependencies, depending for which platform it is compiled. The code is the same for all platforms. E.g. on Android the ...
1
vote
5answers
339 views

Maven: Selecting Parent Project Based On Profile

I have a maven project - it is a plugin for jenkins. It's parent should be a: <parent> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>plugin</artifactId> ...
0
votes
1answer
514 views

How to properly set up multi profile maven project?

Hey, I'm talking about profiles within pom.xml of a project. Could please anybody explain to me, why if I have 2 profiles in pom definition and I run test phase from one of the profiles, both the Main ...
0
votes
1answer
398 views

using maven variables defined in two separate profiles

I have two profiles in my pom.xml, dev and stage: <profiles> <profile> <id>dev</id> <properties> ...
1
vote
1answer
2k views

Maven - Calling a module from Parent POM based on the profile

I have a module which is supposed to produce two artifacts (war's). The only difference between the two WAR's is the web.xml being used. I did this with the help of Maven Profiles... <parent> ...
4
votes
1answer
6k views

Maven Build multiple profiles in one go

It is our policy to only build 1 deployable jar. all environment-specific configurations are kept separate, and we build them all together at once. so under our current Ant process, we have a ...
6
votes
2answers
2k views

maven profile dependency

I have a maven module with 2 profile profile-a and profile-b profile-a can be used independent but profile-b should be run with profile-a mvn install -P profile-a // valid mvn ...
2
votes
1answer
890 views

How to build multiple configurations of an artifact (e.g. WAR etc.) with Maven?

due to the modular nature of some of our current applications, we have a need to understand how to setup Maven to produces mutliple configurations of the same artifact (in our case a WAR file), ...