views:

32

answers:

1
 <profile>
        <id>test</id>
        <activation>
          <property>
            <name>environment</name>
            <value>linux-host</value>
          </property>
        </activation>
 </profile>

How can I reference "linux-host" inside the profile?

A: 

Did you try ${environment}?

Pascal Thivent