-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
28 lines (25 loc) · 791 Bytes
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>puppetlabs.cprice</groupId>
<artifactId>jruby-puppet-compile-memleak-parent</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<!-- if you have cloned the jruby git repo in the same parent dir
where you've cloned this project, we'll load the jruby core source -->
<profiles>
<profile>
<id>jruby-core-source</id>
<activation>
<file>
<exists>../jruby/core</exists>
</file>
</activation>
<modules>
<module>../jruby/core</module>
</modules>
</profile>
</profiles>
<modules>
<module>./memleak</module>
</modules>
</project>