Maven Multiproject Profile activation via property

468 Views Asked by At

I have a problem to activate a profile. There is a master pom with the profile:

<profile>
    <id>EntityUpdater</id>
    <activation>
        <property>
            <name>entityupdater.start</name>
    <value>true</value>
        </property>
</activation>
    ....

In my childpom (jar package) I specify the property:

<properties>
    <!-- ENTITY UPDATER CONFIG -->
    <entityupdater.start>true</entityupdater.start>
    ....

But in the build process the profile does not start.

I would be very happy if anyone could help me.

Best regards, Daniel

1

There are 1 best solutions below

0
On

Unfortunately, Maven can only trigger property based profiles, if you are passing them in from the command-line as JVM args:

mvn clean package -Dentityupdater.start