Hello, all!

I'm trying to use the EL Profile Activation Maven Extension

  https://github.com/kpiwko/el-profile-activator-extension

to activate a profile when the foo_env system property is either not
set, or set to "development".  I'm using the "help:active-profiles" goal
of the Maven Help plugin and the "validate" phase to test whether or not
a profile is active.

The extension works when I install it in

  <maven-home>/lib/ext

and it works when I specify it on the command line with

  -Dmaven.ext.class.path=<paths-to-extension-jars>

but it does *not* work when I put it in the project's

  .mvn/extensions.xml

Does anyone know why?!

This is Maven 3.5.4, the latest Git snapshot of EL Profile Activation
Maven Extension, and MVEL 2.4.2.Final.

The el-profile-activator-extension artifact is not published in the
Central Repository, but I installed it into my local repository (i.e.,
~/.m2/repository) with

  git clone https://github.com/kpiwko/el-profile-activator-extension.git
  cd el-profile-activator-extension
  : JAVA_HOME has been set to a Java 8 SDK to compile
  mvn install

That should be fine, right?  My local repository will be searched first
for any artifacts listed in extensions.xml, and I don't get a warning
nor error about it not being found, so my understanding is that this is
OK.

For the case where the extension does not work, I have a test-01 project
directory containing the following pom.xml file

  <?xml version="1.0" encoding="UTF-8"?>
  <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/xsd/maven-4.0.0.xsd";>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.example.foo</groupId>
    <artifactId>foo</artifactId>
    <version>1.0.0</version>
    <packaging>pom</packaging>
    <profiles>
      <profile>
        <id>foo_env-development</id>
        <activation>
          <property>
            <name>mvel</name>
            <value>(!isdef foo_env) || (isdef foo_env &amp;&amp; foo_env == 
"development")</value>
          </property>
        </activation>
      </profile>
    </profiles>
  </project>

and the following .mvn/extensions.xml file

  <extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0";
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
      xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0
          http://maven.apache.org/xsd/core-extensions-1.0.0.xsd";>
    <extension>
      <groupId>com.redhat.jboss.maven</groupId>
      <artifactId>el-profile-activator-extension</artifactId>
      <version>1.0.0-SNAPSHOT</version>
    </extension>
  </extensions>

I invoke Maven like this

  mvn help:active-profiles validate

and it shows that the foo_env-development profile is not active (i.e.,
it lists no active profiles)

  The following profiles are active:

but it should be!

A transcript of this and with the "-X" option is attached as

  test-01-extensions-dot-xml.txt

Removing the .mvn directory and adding

  el-profile-activator-extension-1.0.0-SNAPSHOT.jar

and

  mvel2-2.4.2.Final.jar

to

  <maven-home>/lib/ext

works; i.e., it shows that the foo_env-development profile is active

  The following profiles are active:

   - foo_env-development (source: org.example.foo:foo:1.0.0)

A transcript of this and with the "-X" option is attached as

  test-01-maven-home-lib-ext.txt

Removing those JARs from

  <maven-home>/lib/ext

and instead specifying them on the command line by setting the

  maven.ext.class.path

system property works; i.e., it shows that the foo_env-development
profile is active

  The following profiles are active:

   - foo_env-development (source: org.example.foo:foo:1.0.0)

A transcript of this and with the "-X" option is attached as

  test-01-maven-ext-class-path.txt

Any help getting the extensions.xml case to work would be greatly
appreciated!  Thank you!

Lewis
$ mvn help:active-profiles validate
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-help-plugin:3.1.0:active-profiles (default-cli) @ foo ---
[INFO]
Active Profiles for Project 'org.example.foo:foo:pom:1.0.0':

The following profiles are active:




[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.787 s
[INFO] Finished at: 2018-10-25T22:37:10-05:00
[INFO] ------------------------------------------------------------------------
$ mvn -X help:active-profiles validate
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 
2018-06-17T13:33:14-05:00)
Maven home: /usr/local/Cellar/maven/3.5.4/libexec
Java version: 11, vendor: Oracle Corporation, runtime: 
/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.13.6", arch: "x86_64", family: "mac"
[DEBUG] Reading global settings from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/settings.xml
[DEBUG] Reading user settings from /Users/jlmuir/.m2/settings.xml
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for 
/Users/jlmuir/.m2/repository
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=994870, 
ConflictMarker.markTime=438549, ConflictMarker.nodeCount=89, 
ConflictIdSorter.graphTime=590697, ConflictIdSorter.topsortTime=401729, 
ConflictIdSorter.conflictIdCount=33, ConflictIdSorter.conflictIdCycleCount=0, 
ConflictResolver.totalTime=4516179, ConflictResolver.conflictItemCount=87, 
DefaultDependencyCollector.collectTime=310694175, 
DefaultDependencyCollector.transformTime=9086346}
[DEBUG] 
com.redhat.jboss.maven:el-profile-activator-extension:jar:1.0.0-SNAPSHOT:
[DEBUG]    org.apache.maven:maven-compat:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-model:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.3.9:compile
[DEBUG]          org.apache.maven:maven-builder-support:jar:3.3.9:compile
[DEBUG]          com.google.guava:guava:jar:18.0:compile
[DEBUG]       org.apache.maven:maven-settings:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-artifact:jar:3.3.9:compile
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.0.22:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.21:compile
[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.2:compile
[DEBUG]          javax.enterprise:cdi-api:jar:1.0:compile
[DEBUG]             javax.annotation:jsr250-api:jar:1.0:compile
[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.2:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
[DEBUG]       org.apache.maven.wagon:wagon-provider-api:jar:2.10:compile
[DEBUG]    org.apache.maven:maven-core:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-plugin-api:jar:3.3.9:compile
[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.3.9:compile
[DEBUG]          org.eclipse.aether:aether-spi:jar:1.0.2.v20150114:compile
[DEBUG]       org.eclipse.aether:aether-impl:jar:1.0.2.v20150114:compile
[DEBUG]       org.eclipse.aether:aether-api:jar:1.0.2.v20150114:compile
[DEBUG]       org.eclipse.aether:aether-util:jar:1.0.2.v20150114:compile
[DEBUG]       com.google.inject:guice:jar:no_aop:4.0:compile
[DEBUG]          javax.inject:javax.inject:jar:1:compile
[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]       org.apache.commons:commons-lang3:jar:3.4:compile
[DEBUG]    org.mvel:mvel2:jar:2.4.2.Final:compile
[DEBUG] Populating class realm 
coreExtension>com.redhat.jboss.maven:el-profile-activator-extension:1.0.0-SNAPSHOT
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/com/redhat/jboss/maven/el-profile-activator-extension/1.0.0-SNAPSHOT/el-profile-activator-extension-1.0.0-SNAPSHOT.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/com/google/guava/guava/18.0/guava-18.0.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/com/google/inject/guice/4.0/guice-4.0-no_aop.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/mvel/mvel2/2.4.2.Final/mvel2-2.4.2.Final.jar
[DEBUG] Populating class realm maven.ext
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: javax.annotation.* < maven.ext
[DEBUG]   Imported: javax.annotation.security.* < maven.ext
[DEBUG]   Imported: javax.enterprise.inject.* < maven.ext
[DEBUG]   Imported: javax.enterprise.util.* < maven.ext
[DEBUG]   Imported: javax.inject.* < maven.ext
[DEBUG]   Imported: org.apache.maven.* < maven.ext
[DEBUG]   Imported: org.apache.maven.artifact < maven.ext
[DEBUG]   Imported: org.apache.maven.classrealm < maven.ext
[DEBUG]   Imported: org.apache.maven.cli < maven.ext
[DEBUG]   Imported: org.apache.maven.configuration < maven.ext
[DEBUG]   Imported: org.apache.maven.exception < maven.ext
[DEBUG]   Imported: org.apache.maven.execution < maven.ext
[DEBUG]   Imported: org.apache.maven.execution.scope < maven.ext
[DEBUG]   Imported: org.apache.maven.lifecycle < maven.ext
[DEBUG]   Imported: org.apache.maven.model < maven.ext
[DEBUG]   Imported: org.apache.maven.monitor < maven.ext
[DEBUG]   Imported: org.apache.maven.plugin < maven.ext
[DEBUG]   Imported: org.apache.maven.profiles < maven.ext
[DEBUG]   Imported: org.apache.maven.project < maven.ext
[DEBUG]   Imported: org.apache.maven.reporting < maven.ext
[DEBUG]   Imported: org.apache.maven.repository < maven.ext
[DEBUG]   Imported: org.apache.maven.rtinfo < maven.ext
[DEBUG]   Imported: org.apache.maven.settings < maven.ext
[DEBUG]   Imported: org.apache.maven.toolchain < maven.ext
[DEBUG]   Imported: org.apache.maven.usability < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.* < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.authentication < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.authorization < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.events < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.observers < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.proxy < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.repository < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.resource < maven.ext
[DEBUG]   Imported: org.codehaus.classworlds < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.* < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.classworlds < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.component < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.configuration < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.container < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.context < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.lifecycle < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.logging < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.personality < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < 
maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < maven.ext
[DEBUG]   Imported: org.eclipse.aether.* < maven.ext
[DEBUG]   Imported: org.eclipse.aether.artifact < maven.ext
[DEBUG]   Imported: org.eclipse.aether.collection < maven.ext
[DEBUG]   Imported: org.eclipse.aether.deployment < maven.ext
[DEBUG]   Imported: org.eclipse.aether.graph < maven.ext
[DEBUG]   Imported: org.eclipse.aether.impl < maven.ext
[DEBUG]   Imported: org.eclipse.aether.installation < maven.ext
[DEBUG]   Imported: org.eclipse.aether.internal.impl < maven.ext
[DEBUG]   Imported: org.eclipse.aether.metadata < maven.ext
[DEBUG]   Imported: org.eclipse.aether.repository < maven.ext
[DEBUG]   Imported: org.eclipse.aether.resolution < maven.ext
[DEBUG]   Imported: org.eclipse.aether.spi < maven.ext
[DEBUG]   Imported: org.eclipse.aether.transfer < maven.ext
[DEBUG]   Imported: org.eclipse.aether.version < maven.ext
[DEBUG]   Imported: org.fusesource.jansi.* < maven.ext
[DEBUG]   Imported: org.slf4j.* < maven.ext
[DEBUG]   Imported: org.slf4j.helpers.* < maven.ext
[DEBUG]   Imported: org.slf4j.spi.* < maven.ext
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Message scheme: color
[DEBUG] Message styles: debug info warning error success failure strong mojo 
project
[DEBUG] Reading global settings from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/settings.xml
[DEBUG] Reading user settings from /Users/jlmuir/.m2/settings.xml
[DEBUG] Reading global toolchains from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/toolchains.xml
[DEBUG] Reading user toolchains from /Users/jlmuir/.m2/toolchains.xml
[DEBUG] Using local repository at /Users/jlmuir/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for 
/Users/jlmuir/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Evaluating following MVEL expression: (!isdef foo_env) || (isdef 
foo_env && foo_env == "development")
[DEBUG] Evaluated MVEL expression: (!isdef foo_env) || (isdef foo_env && 
foo_env == "development") as true
[DEBUG] Extension realms for project org.example.foo:foo:pom:1.0.0: (none)
[DEBUG] Looking up lifecycle mappings for packaging pom from 
ClassRealm[maven.ext, parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Resolving plugin prefix help from [org.apache.maven.plugins, 
org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in 
local (/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.codehaus.mojo/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix help to 
org.apache.maven.plugins:maven-help-plugin from repository central
[DEBUG] Could not find metadata 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml, locally cached 
metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-help-plugin 
to 3.1.0 from repository central (https://repo.maven.apache.org/maven2, 
default, releases)
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: org.example.foo:foo:pom:1.0.0
[DEBUG] Tasks:   [help:active-profiles]
[DEBUG] Style:   Aggregating
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.example.foo:foo:pom:1.0.0
[DEBUG] Tasks:   [validate]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[DEBUG] Resolving plugin prefix help from [org.apache.maven.plugins, 
org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in 
local (/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.codehaus.mojo/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix help to 
org.apache.maven.plugins:maven-help-plugin from repository central
[DEBUG] Could not find metadata 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml, locally cached 
metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-help-plugin 
to 3.1.0 from repository central (https://repo.maven.apache.org/maven2, 
default, releases)
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.example.foo:foo:1.0.0
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          
org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles (default-cli)
[DEBUG] Style:         Aggregating
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <localRepository default-value="${localRepository}"/>
  <output>${output}</output>
  <projects default-value="${reactorProjects}"/>
  <remoteRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] --- maven-help-plugin:3.1.0:active-profiles (default-cli) @ foo ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=476101, 
ConflictMarker.markTime=271688, ConflictMarker.nodeCount=117, 
ConflictIdSorter.graphTime=203495, ConflictIdSorter.topsortTime=78408, 
ConflictIdSorter.conflictIdCount=50, ConflictIdSorter.conflictIdCycleCount=0, 
ConflictResolver.totalTime=2958689, ConflictResolver.conflictItemCount=112, 
DefaultDependencyCollector.collectTime=211271301, 
DefaultDependencyCollector.transformTime=4085767}
[DEBUG] org.apache.maven.plugins:maven-help-plugin:jar:3.1.0:
[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.7.1:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-settings:jar:3.0:compile
[DEBUG]    
org.apache.maven.plugin-tools:maven-plugin-tools-generators:jar:3.5.1:compile
[DEBUG]       
org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:3.5.1:compile
[DEBUG]       org.codehaus.plexus:plexus-velocity:jar:1.1.8:compile
[DEBUG]          
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG]             junit:junit:jar:3.8.1:compile
[DEBUG]             classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG]          commons-collections:commons-collections:jar:3.1:compile
[DEBUG]       org.apache.velocity:velocity:jar:1.7:compile
[DEBUG]          commons-lang:commons-lang:jar:2.4:compile
[DEBUG]       net.sf.jtidy:jtidy:jar:r938:compile
[DEBUG]    org.apache.maven.shared:maven-artifact-transfer:jar:0.9.1:compile
[DEBUG]       
org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1:compile
[DEBUG]       commons-codec:commons-codec:jar:1.6:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.7.5:compile
[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
[DEBUG]       org.apache.maven.doxia:doxia-sink-api:jar:1.0:compile
[DEBUG]    org.apache.maven.reporting:maven-reporting-exec:jar:1.4:compile
[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:0.3:compile
[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG]       org.eclipse.aether:aether-util:jar:0.9.0.M2:compile
[DEBUG]    org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-6:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.1.0:compile
[DEBUG]    org.jdom:jdom2:jar:2.0.6:compile
[DEBUG]    com.thoughtworks.xstream:xstream:jar:1.4.10:compile
[DEBUG]       xmlpull:xmlpull:jar:1.1.3.1:compile
[DEBUG]       xpp3:xpp3_min:jar:1.1.4c:compile
[DEBUG]    org.apache.commons:commons-lang3:jar:3.7:compile
[DEBUG] Created new class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG] Importing foreign packages into class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG]   Included: org.apache.maven.plugins:maven-help-plugin:jar:3.1.0
[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.7.1
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG]   Included: 
org.apache.maven.plugin-tools:maven-plugin-tools-generators:jar:3.5.1
[DEBUG]   Included: 
org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:3.5.1
[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.8
[DEBUG]   Included: junit:junit:jar:3.8.1
[DEBUG]   Included: commons-collections:commons-collections:jar:3.1
[DEBUG]   Included: org.apache.velocity:velocity:jar:1.7
[DEBUG]   Included: commons-lang:commons-lang:jar:2.4
[DEBUG]   Included: net.sf.jtidy:jtidy:jar:r938
[DEBUG]   Included: org.apache.maven.shared:maven-artifact-transfer:jar:0.9.1
[DEBUG]   Included: 
org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1
[DEBUG]   Included: commons-codec:commons-codec:jar:1.6
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-exec:jar:1.4
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:0.3
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG]   Included: org.eclipse.aether:aether-util:jar:0.9.0.M2
[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-6
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.1.0
[DEBUG]   Included: org.jdom:jdom2:jar:2.0.6
[DEBUG]   Included: com.thoughtworks.xstream:xstream:jar:1.4.10
[DEBUG]   Included: xmlpull:xmlpull:jar:1.1.3.1
[DEBUG]   Included: xpp3:xpp3_min:jar:1.1.4c
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.7
[DEBUG] Configuring mojo 
org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles from plugin 
realm ClassRealm[plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0, 
parent: jdk.internal.loader.ClassLoaders$AppClassLoader@799f7e29]
[DEBUG] Configuring mojo 
'org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles' with basic 
configurator -->
[DEBUG]   (f) localRepository =       id: local
      url: file:///Users/jlmuir/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) projects = [MavenProject: org.example.foo:foo:1.0.0 @ 
/private/tmp/test-01/pom.xml]
[DEBUG]   (f) remoteRepositories = [      id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@593a6726
[DEBUG] -- end configuration --
[INFO]
Active Profiles for Project 'org.example.foo:foo:pom:1.0.0':

The following profiles are active:




[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.example.foo:foo:1.0.0
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] =======================================================================
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.704 s
[INFO] Finished at: 2018-10-25T22:37:29-05:00
[INFO] ------------------------------------------------------------------------
$ mvn help:active-profiles validate
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-help-plugin:3.1.0:active-profiles (default-cli) @ foo ---
[INFO]
Active Profiles for Project 'org.example.foo:foo:pom:1.0.0':

The following profiles are active:

 - foo_env-development (source: org.example.foo:foo:1.0.0)



[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.997 s
[INFO] Finished at: 2018-10-25T22:42:06-05:00
[INFO] ------------------------------------------------------------------------
$ mvn -X help:active-profiles validate
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 
2018-06-17T13:33:14-05:00)
Maven home: /usr/local/Cellar/maven/3.5.4/libexec
Java version: 11, vendor: Oracle Corporation, runtime: 
/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.13.6", arch: "x86_64", family: "mac"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: javax.annotation.* < plexus.core
[DEBUG]   Imported: javax.annotation.security.* < plexus.core
[DEBUG]   Imported: javax.enterprise.inject.* < plexus.core
[DEBUG]   Imported: javax.enterprise.util.* < plexus.core
[DEBUG]   Imported: javax.inject.* < plexus.core
[DEBUG]   Imported: org.apache.maven.* < plexus.core
[DEBUG]   Imported: org.apache.maven.artifact < plexus.core
[DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
[DEBUG]   Imported: org.apache.maven.cli < plexus.core
[DEBUG]   Imported: org.apache.maven.configuration < plexus.core
[DEBUG]   Imported: org.apache.maven.exception < plexus.core
[DEBUG]   Imported: org.apache.maven.execution < plexus.core
[DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core
[DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG]   Imported: org.apache.maven.model < plexus.core
[DEBUG]   Imported: org.apache.maven.monitor < plexus.core
[DEBUG]   Imported: org.apache.maven.plugin < plexus.core
[DEBUG]   Imported: org.apache.maven.profiles < plexus.core
[DEBUG]   Imported: org.apache.maven.project < plexus.core
[DEBUG]   Imported: org.apache.maven.reporting < plexus.core
[DEBUG]   Imported: org.apache.maven.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG]   Imported: org.apache.maven.settings < plexus.core
[DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
[DEBUG]   Imported: org.apache.maven.usability < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG]   Imported: org.codehaus.classworlds < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < 
plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < 
plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < 
plexus.core
[DEBUG]   Imported: org.eclipse.aether.* < plexus.core
[DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core
[DEBUG]   Imported: org.eclipse.aether.collection < plexus.core
[DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core
[DEBUG]   Imported: org.eclipse.aether.graph < plexus.core
[DEBUG]   Imported: org.eclipse.aether.impl < plexus.core
[DEBUG]   Imported: org.eclipse.aether.installation < plexus.core
[DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core
[DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core
[DEBUG]   Imported: org.eclipse.aether.repository < plexus.core
[DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core
[DEBUG]   Imported: org.eclipse.aether.spi < plexus.core
[DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core
[DEBUG]   Imported: org.eclipse.aether.version < plexus.core
[DEBUG]   Imported: org.fusesource.jansi.* < plexus.core
[DEBUG]   Imported: org.slf4j.* < plexus.core
[DEBUG]   Imported: org.slf4j.helpers.* < plexus.core
[DEBUG]   Imported: org.slf4j.spi.* < plexus.core
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Message scheme: color
[DEBUG] Message styles: debug info warning error success failure strong mojo 
project
[DEBUG] Reading global settings from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/settings.xml
[DEBUG] Reading user settings from /Users/jlmuir/.m2/settings.xml
[DEBUG] Reading global toolchains from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/toolchains.xml
[DEBUG] Reading user toolchains from /Users/jlmuir/.m2/toolchains.xml
[DEBUG] Using local repository at /Users/jlmuir/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for 
/Users/jlmuir/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Evaluating following MVEL expression: (!isdef foo_env) || (isdef 
foo_env && foo_env == "development")
[DEBUG] Evaluated MVEL expression: (!isdef foo_env) || (isdef foo_env && 
foo_env == "development") as true
[DEBUG] Extension realms for project org.example.foo:foo:pom:1.0.0: (none)
[DEBUG] Looking up lifecycle mappings for packaging pom from 
ClassRealm[plexus.core, parent: null]
[DEBUG] Resolving plugin prefix help from [org.apache.maven.plugins, 
org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in 
local (/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.codehaus.mojo/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix help to 
org.apache.maven.plugins:maven-help-plugin from repository central
[DEBUG] Could not find metadata 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml, locally cached 
metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-help-plugin 
to 3.1.0 from repository central (https://repo.maven.apache.org/maven2, 
default, releases)
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: org.example.foo:foo:pom:1.0.0
[DEBUG] Tasks:   [help:active-profiles]
[DEBUG] Style:   Aggregating
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.example.foo:foo:pom:1.0.0
[DEBUG] Tasks:   [validate]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[DEBUG] Resolving plugin prefix help from [org.apache.maven.plugins, 
org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in 
local (/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.codehaus.mojo/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix help to 
org.apache.maven.plugins:maven-help-plugin from repository central
[DEBUG] Could not find metadata 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml, locally cached 
metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-help-plugin 
to 3.1.0 from repository central (https://repo.maven.apache.org/maven2, 
default, releases)
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.example.foo:foo:1.0.0
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          
org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles (default-cli)
[DEBUG] Style:         Aggregating
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <localRepository default-value="${localRepository}"/>
  <output>${output}</output>
  <projects default-value="${reactorProjects}"/>
  <remoteRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] --- maven-help-plugin:3.1.0:active-profiles (default-cli) @ foo ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=876359, 
ConflictMarker.markTime=334628, ConflictMarker.nodeCount=117, 
ConflictIdSorter.graphTime=444659, ConflictIdSorter.topsortTime=468587, 
ConflictIdSorter.conflictIdCount=50, ConflictIdSorter.conflictIdCycleCount=0, 
ConflictResolver.totalTime=6609188, ConflictResolver.conflictItemCount=112, 
DefaultDependencyCollector.collectTime=249973735, 
DefaultDependencyCollector.transformTime=10590887}
[DEBUG] org.apache.maven.plugins:maven-help-plugin:jar:3.1.0:
[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.7.1:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-settings:jar:3.0:compile
[DEBUG]    
org.apache.maven.plugin-tools:maven-plugin-tools-generators:jar:3.5.1:compile
[DEBUG]       
org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:3.5.1:compile
[DEBUG]       org.codehaus.plexus:plexus-velocity:jar:1.1.8:compile
[DEBUG]          
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG]             junit:junit:jar:3.8.1:compile
[DEBUG]             classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG]          commons-collections:commons-collections:jar:3.1:compile
[DEBUG]       org.apache.velocity:velocity:jar:1.7:compile
[DEBUG]          commons-lang:commons-lang:jar:2.4:compile
[DEBUG]       net.sf.jtidy:jtidy:jar:r938:compile
[DEBUG]    org.apache.maven.shared:maven-artifact-transfer:jar:0.9.1:compile
[DEBUG]       
org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1:compile
[DEBUG]       commons-codec:commons-codec:jar:1.6:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.7.5:compile
[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
[DEBUG]       org.apache.maven.doxia:doxia-sink-api:jar:1.0:compile
[DEBUG]    org.apache.maven.reporting:maven-reporting-exec:jar:1.4:compile
[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:0.3:compile
[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG]       org.eclipse.aether:aether-util:jar:0.9.0.M2:compile
[DEBUG]    org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-6:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.1.0:compile
[DEBUG]    org.jdom:jdom2:jar:2.0.6:compile
[DEBUG]    com.thoughtworks.xstream:xstream:jar:1.4.10:compile
[DEBUG]       xmlpull:xmlpull:jar:1.1.3.1:compile
[DEBUG]       xpp3:xpp3_min:jar:1.1.4c:compile
[DEBUG]    org.apache.commons:commons-lang3:jar:3.7:compile
[DEBUG] Created new class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG] Importing foreign packages into class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG]   Included: org.apache.maven.plugins:maven-help-plugin:jar:3.1.0
[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.7.1
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG]   Included: 
org.apache.maven.plugin-tools:maven-plugin-tools-generators:jar:3.5.1
[DEBUG]   Included: 
org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:3.5.1
[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.8
[DEBUG]   Included: junit:junit:jar:3.8.1
[DEBUG]   Included: commons-collections:commons-collections:jar:3.1
[DEBUG]   Included: org.apache.velocity:velocity:jar:1.7
[DEBUG]   Included: commons-lang:commons-lang:jar:2.4
[DEBUG]   Included: net.sf.jtidy:jtidy:jar:r938
[DEBUG]   Included: org.apache.maven.shared:maven-artifact-transfer:jar:0.9.1
[DEBUG]   Included: 
org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1
[DEBUG]   Included: commons-codec:commons-codec:jar:1.6
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-exec:jar:1.4
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:0.3
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG]   Included: org.eclipse.aether:aether-util:jar:0.9.0.M2
[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-6
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.1.0
[DEBUG]   Included: org.jdom:jdom2:jar:2.0.6
[DEBUG]   Included: com.thoughtworks.xstream:xstream:jar:1.4.10
[DEBUG]   Included: xmlpull:xmlpull:jar:1.1.3.1
[DEBUG]   Included: xpp3:xpp3_min:jar:1.1.4c
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.7
[DEBUG] Configuring mojo 
org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles from plugin 
realm ClassRealm[plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0, 
parent: jdk.internal.loader.ClassLoaders$AppClassLoader@799f7e29]
[DEBUG] Configuring mojo 
'org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles' with basic 
configurator -->
[DEBUG]   (f) localRepository =       id: local
      url: file:///Users/jlmuir/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) projects = [MavenProject: org.example.foo:foo:1.0.0 @ 
/private/tmp/test-01/pom.xml]
[DEBUG]   (f) remoteRepositories = [      id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@5d7ca698
[DEBUG] -- end configuration --
[INFO]
Active Profiles for Project 'org.example.foo:foo:pom:1.0.0':

The following profiles are active:

 - foo_env-development (source: org.example.foo:foo:1.0.0)



[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.example.foo:foo:1.0.0
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] =======================================================================
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.890 s
[INFO] Finished at: 2018-10-25T22:42:20-05:00
[INFO] ------------------------------------------------------------------------
$ mvn 
-Dmaven.ext.class.path=/Users/jlmuir/.m2/repository/org/mvel/mvel2/2.4.2.Final/mvel2-2.4.2.Final.jar:/Users/jlmuir/.m2/repository/com/redhat/jboss/maven/el-profile-activator-extension/1.0.0-SNAPSHOT/el-profile-activator-extension-1.0.0-SNAPSHOT.jar
 help:active-profiles validate
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- maven-help-plugin:3.1.0:active-profiles (default-cli) @ foo ---
[INFO]
Active Profiles for Project 'org.example.foo:foo:pom:1.0.0':

The following profiles are active:

 - foo_env-development (source: org.example.foo:foo:1.0.0)



[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.759 s
[INFO] Finished at: 2018-10-25T22:45:32-05:00
[INFO] ------------------------------------------------------------------------
$ mvn -X 
-Dmaven.ext.class.path=/Users/jlmuir/.m2/repository/org/mvel/mvel2/2.4.2.Final/mvel2-2.4.2.Final.jar:/Users/jlmuir/.m2/repository/com/redhat/jboss/maven/el-profile-activator-extension/1.0.0-SNAPSHOT/el-profile-activator-extension-1.0.0-SNAPSHOT.jar
 help:active-profiles validate
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 
2018-06-17T13:33:14-05:00)
Maven home: /usr/local/Cellar/maven/3.5.4/libexec
Java version: 11, vendor: Oracle Corporation, runtime: 
/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.13.6", arch: "x86_64", family: "mac"
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/mvel/mvel2/2.4.2.Final/mvel2-2.4.2.Final.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/com/redhat/jboss/maven/el-profile-activator-extension/1.0.0-SNAPSHOT/el-profile-activator-extension-1.0.0-SNAPSHOT.jar
[DEBUG] Populating class realm maven.ext
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/org/mvel/mvel2/2.4.2.Final/mvel2-2.4.2.Final.jar
[DEBUG]   Included 
/Users/jlmuir/.m2/repository/com/redhat/jboss/maven/el-profile-activator-extension/1.0.0-SNAPSHOT/el-profile-activator-extension-1.0.0-SNAPSHOT.jar
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: javax.annotation.* < maven.ext
[DEBUG]   Imported: javax.annotation.security.* < maven.ext
[DEBUG]   Imported: javax.enterprise.inject.* < maven.ext
[DEBUG]   Imported: javax.enterprise.util.* < maven.ext
[DEBUG]   Imported: javax.inject.* < maven.ext
[DEBUG]   Imported: org.apache.maven.* < maven.ext
[DEBUG]   Imported: org.apache.maven.artifact < maven.ext
[DEBUG]   Imported: org.apache.maven.classrealm < maven.ext
[DEBUG]   Imported: org.apache.maven.cli < maven.ext
[DEBUG]   Imported: org.apache.maven.configuration < maven.ext
[DEBUG]   Imported: org.apache.maven.exception < maven.ext
[DEBUG]   Imported: org.apache.maven.execution < maven.ext
[DEBUG]   Imported: org.apache.maven.execution.scope < maven.ext
[DEBUG]   Imported: org.apache.maven.lifecycle < maven.ext
[DEBUG]   Imported: org.apache.maven.model < maven.ext
[DEBUG]   Imported: org.apache.maven.monitor < maven.ext
[DEBUG]   Imported: org.apache.maven.plugin < maven.ext
[DEBUG]   Imported: org.apache.maven.profiles < maven.ext
[DEBUG]   Imported: org.apache.maven.project < maven.ext
[DEBUG]   Imported: org.apache.maven.reporting < maven.ext
[DEBUG]   Imported: org.apache.maven.repository < maven.ext
[DEBUG]   Imported: org.apache.maven.rtinfo < maven.ext
[DEBUG]   Imported: org.apache.maven.settings < maven.ext
[DEBUG]   Imported: org.apache.maven.toolchain < maven.ext
[DEBUG]   Imported: org.apache.maven.usability < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.* < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.authentication < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.authorization < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.events < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.observers < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.proxy < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.repository < maven.ext
[DEBUG]   Imported: org.apache.maven.wagon.resource < maven.ext
[DEBUG]   Imported: org.codehaus.classworlds < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.* < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.classworlds < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.component < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.configuration < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.container < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.context < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.lifecycle < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.logging < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.personality < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < 
maven.ext
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < maven.ext
[DEBUG]   Imported: org.eclipse.aether.* < maven.ext
[DEBUG]   Imported: org.eclipse.aether.artifact < maven.ext
[DEBUG]   Imported: org.eclipse.aether.collection < maven.ext
[DEBUG]   Imported: org.eclipse.aether.deployment < maven.ext
[DEBUG]   Imported: org.eclipse.aether.graph < maven.ext
[DEBUG]   Imported: org.eclipse.aether.impl < maven.ext
[DEBUG]   Imported: org.eclipse.aether.installation < maven.ext
[DEBUG]   Imported: org.eclipse.aether.internal.impl < maven.ext
[DEBUG]   Imported: org.eclipse.aether.metadata < maven.ext
[DEBUG]   Imported: org.eclipse.aether.repository < maven.ext
[DEBUG]   Imported: org.eclipse.aether.resolution < maven.ext
[DEBUG]   Imported: org.eclipse.aether.spi < maven.ext
[DEBUG]   Imported: org.eclipse.aether.transfer < maven.ext
[DEBUG]   Imported: org.eclipse.aether.version < maven.ext
[DEBUG]   Imported: org.fusesource.jansi.* < maven.ext
[DEBUG]   Imported: org.slf4j.* < maven.ext
[DEBUG]   Imported: org.slf4j.helpers.* < maven.ext
[DEBUG]   Imported: org.slf4j.spi.* < maven.ext
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Message scheme: color
[DEBUG] Message styles: debug info warning error success failure strong mojo 
project
[DEBUG] Reading global settings from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/settings.xml
[DEBUG] Reading user settings from /Users/jlmuir/.m2/settings.xml
[DEBUG] Reading global toolchains from 
/usr/local/Cellar/maven/3.5.4/libexec/conf/toolchains.xml
[DEBUG] Reading user toolchains from /Users/jlmuir/.m2/toolchains.xml
[DEBUG] Using local repository at /Users/jlmuir/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for 
/Users/jlmuir/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Evaluating following MVEL expression: (!isdef foo_env) || (isdef 
foo_env && foo_env == "development")
[DEBUG] Evaluated MVEL expression: (!isdef foo_env) || (isdef foo_env && 
foo_env == "development") as true
[DEBUG] Extension realms for project org.example.foo:foo:pom:1.0.0: (none)
[DEBUG] Looking up lifecycle mappings for packaging pom from 
ClassRealm[maven.ext, parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Resolving plugin prefix help from [org.apache.maven.plugins, 
org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in 
local (/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.codehaus.mojo/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix help to 
org.apache.maven.plugins:maven-help-plugin from repository central
[DEBUG] Could not find metadata 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml, locally cached 
metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-help-plugin 
to 3.1.0 from repository central (https://repo.maven.apache.org/maven2, 
default, releases)
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: org.example.foo:foo:pom:1.0.0
[DEBUG] Tasks:   [help:active-profiles]
[DEBUG] Style:   Aggregating
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Project: org.example.foo:foo:pom:1.0.0
[DEBUG] Tasks:   [validate]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[DEBUG] Resolving plugin prefix help from [org.apache.maven.plugins, 
org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in 
local (/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for org.codehaus.mojo/maven-metadata.xml, 
locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix help to 
org.apache.maven.plugins:maven-help-plugin from repository central
[DEBUG] Could not find metadata 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml in local 
(/Users/jlmuir/.m2/repository)
[DEBUG] Skipped remote request for 
org.apache.maven.plugins:maven-help-plugin/maven-metadata.xml, locally cached 
metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-help-plugin 
to 3.1.0 from repository central (https://repo.maven.apache.org/maven2, 
default, releases)
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.example.foo:foo:1.0.0
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          
org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles (default-cli)
[DEBUG] Style:         Aggregating
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <localRepository default-value="${localRepository}"/>
  <output>${output}</output>
  <projects default-value="${reactorProjects}"/>
  <remoteRepositories default-value="${project.remoteArtifactRepositories}"/>
  <session default-value="${session}"/>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] --- maven-help-plugin:3.1.0:active-profiles (default-cli) @ foo ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=890705, 
ConflictMarker.markTime=475549, ConflictMarker.nodeCount=117, 
ConflictIdSorter.graphTime=719747, ConflictIdSorter.topsortTime=518481, 
ConflictIdSorter.conflictIdCount=50, ConflictIdSorter.conflictIdCycleCount=0, 
ConflictResolver.totalTime=6225043, ConflictResolver.conflictItemCount=112, 
DefaultDependencyCollector.collectTime=264524291, 
DefaultDependencyCollector.transformTime=10444375}
[DEBUG] org.apache.maven.plugins:maven-help-plugin:jar:3.1.0:
[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.7.1:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-settings:jar:3.0:compile
[DEBUG]    
org.apache.maven.plugin-tools:maven-plugin-tools-generators:jar:3.5.1:compile
[DEBUG]       
org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:3.5.1:compile
[DEBUG]       org.codehaus.plexus:plexus-velocity:jar:1.1.8:compile
[DEBUG]          
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG]             junit:junit:jar:3.8.1:compile
[DEBUG]             classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG]          commons-collections:commons-collections:jar:3.1:compile
[DEBUG]       org.apache.velocity:velocity:jar:1.7:compile
[DEBUG]          commons-lang:commons-lang:jar:2.4:compile
[DEBUG]       net.sf.jtidy:jtidy:jar:r938:compile
[DEBUG]    org.apache.maven.shared:maven-artifact-transfer:jar:0.9.1:compile
[DEBUG]       
org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1:compile
[DEBUG]       commons-codec:commons-codec:jar:1.6:compile
[DEBUG]       org.slf4j:slf4j-api:jar:1.7.5:compile
[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
[DEBUG]       org.apache.maven.doxia:doxia-sink-api:jar:1.0:compile
[DEBUG]    org.apache.maven.reporting:maven-reporting-exec:jar:1.4:compile
[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:0.3:compile
[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG]       org.eclipse.aether:aether-util:jar:0.9.0.M2:compile
[DEBUG]    org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-6:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.1.0:compile
[DEBUG]    org.jdom:jdom2:jar:2.0.6:compile
[DEBUG]    com.thoughtworks.xstream:xstream:jar:1.4.10:compile
[DEBUG]       xmlpull:xmlpull:jar:1.1.3.1:compile
[DEBUG]       xpp3:xpp3_min:jar:1.1.4c:compile
[DEBUG]    org.apache.commons:commons-lang3:jar:3.7:compile
[DEBUG] Created new class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG] Importing foreign packages into class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm 
plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0
[DEBUG]   Included: org.apache.maven.plugins:maven-help-plugin:jar:3.1.0
[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.7.1
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG]   Included: 
org.apache.maven.plugin-tools:maven-plugin-tools-generators:jar:3.5.1
[DEBUG]   Included: 
org.apache.maven.plugin-tools:maven-plugin-tools-api:jar:3.5.1
[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.8
[DEBUG]   Included: junit:junit:jar:3.8.1
[DEBUG]   Included: commons-collections:commons-collections:jar:3.1
[DEBUG]   Included: org.apache.velocity:velocity:jar:1.7
[DEBUG]   Included: commons-lang:commons-lang:jar:2.4
[DEBUG]   Included: net.sf.jtidy:jtidy:jar:r938
[DEBUG]   Included: org.apache.maven.shared:maven-artifact-transfer:jar:0.9.1
[DEBUG]   Included: 
org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1
[DEBUG]   Included: commons-codec:commons-codec:jar:1.6
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-exec:jar:1.4
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:0.3
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG]   Included: org.eclipse.aether:aether-util:jar:0.9.0.M2
[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-6
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.1.0
[DEBUG]   Included: org.jdom:jdom2:jar:2.0.6
[DEBUG]   Included: com.thoughtworks.xstream:xstream:jar:1.4.10
[DEBUG]   Included: xmlpull:xmlpull:jar:1.1.3.1
[DEBUG]   Included: xpp3:xpp3_min:jar:1.1.4c
[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.7
[DEBUG] Configuring mojo 
org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles from plugin 
realm ClassRealm[plugin>org.apache.maven.plugins:maven-help-plugin:3.1.0, 
parent: jdk.internal.loader.ClassLoaders$AppClassLoader@799f7e29]
[DEBUG] Configuring mojo 
'org.apache.maven.plugins:maven-help-plugin:3.1.0:active-profiles' with basic 
configurator -->
[DEBUG]   (f) localRepository =       id: local
      url: file:///Users/jlmuir/.m2/repository/
   layout: default
snapshots: [enabled => true, update => always]
 releases: [enabled => true, update => always]

[DEBUG]   (f) projects = [MavenProject: org.example.foo:foo:1.0.0 @ 
/private/tmp/test-01/pom.xml]
[DEBUG]   (f) remoteRepositories = [      id: central
      url: https://repo.maven.apache.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
 releases: [enabled => true, update => daily]
]
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@5d7ca698
[DEBUG] -- end configuration --
[INFO]
Active Profiles for Project 'org.example.foo:foo:pom:1.0.0':

The following profiles are active:

 - foo_env-development (source: org.example.foo:foo:1.0.0)



[INFO]
[INFO] ------------------------< org.example.foo:foo >-------------------------
[INFO] Building foo 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, 
process-sources, generate-resources, process-resources, compile, 
process-classes, generate-test-sources, process-test-sources, 
generate-test-resources, process-test-resources, test-compile, 
process-test-classes, test, prepare-package, package, pre-integration-test, 
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.example.foo:foo:1.0.0
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central 
(https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] =======================================================================
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.920 s
[INFO] Finished at: 2018-10-25T22:45:40-05:00
[INFO] ------------------------------------------------------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to