Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<?xml version="1.0"?>
<project>
  ...
  <packaging>woapplication</packaging>
  ...

<build>
                ........
                <plugins>
                        <plugin>
                                <groupId>org.objectstyle.woproject.maven2</groupId>
                                <artifactId>maven-wolifecycle-plugin</artifactId>
                                <extensions>true</extensions>
                                <configuration>
                                        <readPatternsets>true</readPatternsets>
  <includeJavaClientClassesInWebServerResources>true</includeJavaClientClassesInWebServerResources>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
...
</project>

Per default jars provided by Apple are included per default.

To skip them change your pom to set the 'includeAppleProvidedFrameworks' property to false.

Code Block

<?xml version="1.0"?>
<project>
  ...
  <packaging>woapplication</packaging>
  ...

<build>
                ........
                <plugins>
                        <plugin>
                                <groupId>org.objectstyle.woproject.maven2</groupId>
                                <artifactId>maven-wolifecycle-plugin</artifactId>
                                <extensions>true</extensions>
                                <configuration>
  < includeAppleProvidedFrameworks >false</includeAppleProvidedFrameworks >
                                </configuration>
                        </plugin>
                </plugins>
        </build>
...
</project>