google-code-export / maven-confluence-plugin

Automatically exported from code.google.com/p/maven-confluence-plugin
1 stars 0 forks source link

add support of mac snow leopard #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
since there isn't tools.jar in snow-leopard mac OS we have to introduce the
new dependencies  

Original issue reported on code.google.com by bartolom...@gmail.com on 29 Sep 2009 at 9:33

GoogleCodeExporter commented 9 years ago
added new maven profile

<profile>
     <id>macosx-snow-leopard</id>
     <activation>
              <os>
                  <family>mac</family>
                  <version>10.6</version>
              </os>

....

that include the dependency 

                            <dependency>
                                    <groupId>com.sun</groupId>
                                    <artifactId>tools</artifactId>
                                    <version>1.5.0</version>
                                    <scope>system</scope>

<systemPath>/System/Library/Frameworks/JavaVM.Framework/Versions/CurrentJDK/Home
/lib/dt.jar</systemPath>
                            </dependency>

for plugin 

<plugin><artifactId>maven-plugin-plugin</artifactId>

Original comment by bartolom...@gmail.com on 29 Sep 2009 at 9:38