[MPLUGIN-202] specific tools.jar location on Mac
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1342453 13f79535-47bb-0310-9956-ffa450edef68master
parent
fce4579278
commit
60dfe5e861
|
|
@ -46,12 +46,26 @@
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>default-tools.jar</id>
|
<id>mac</id>
|
||||||
<activation>
|
<activation>
|
||||||
<property>
|
<os>
|
||||||
<name>java.vendor</name>
|
<family>mac</family>
|
||||||
<value>Sun Microsystems Inc.</value>
|
</os>
|
||||||
</property>
|
</activation>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.sun</groupId>
|
||||||
|
<artifactId>tools</artifactId>
|
||||||
|
<version>1.4.2</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${java.home}/../Classes/classes.jar</systemPath>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>default</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
</activation>
|
</activation>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
@ -63,6 +77,7 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>run-its</id>
|
<id>run-its</id>
|
||||||
<build>
|
<build>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue