Skip to content

Commit

Permalink
put promagent-loader into maven profile
Browse files Browse the repository at this point in the history
  • Loading branch information
fstab committed Nov 19, 2018
1 parent 698b7be commit b223eae
Showing 1 changed file with 29 additions and 8 deletions.
37 changes: 29 additions & 8 deletions promagent-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,35 @@
<junit5.version>5.3.1</junit5.version>
</properties>

<modules>
<module>promagent-agent</module>
<module>promagent-api</module>
<module>promagent-internal</module>
<module>promagent-exporter</module>
<!-- <module>promagent-loader</module> --> <!-- commented out, because it is optional and only compiles with tools.jar -->
<module>promagent-maven-plugin</module>
</modules>
<profiles>

<profile>
<id>promagent-loader</id>
<modules>
<module>promagent-agent</module>
<module>promagent-api</module>
<module>promagent-internal</module>
<module>promagent-exporter</module>
<module>promagent-loader</module> <!-- this is only in the promagent-loader profile -->
<module>promagent-maven-plugin</module>
</modules>
</profile>

<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>promagent-agent</module>
<module>promagent-api</module>
<module>promagent-internal</module>
<module>promagent-exporter</module>
<module>promagent-maven-plugin</module>
</modules>
</profile>

</profiles>

<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit b223eae

Please sign in to comment.