Skip to content

Commit

Permalink
Merge pull request #15 from paulhoadley/master
Browse files Browse the repository at this point in the history
Allow additional bundle options to be set during build
  • Loading branch information
maiksd authored Sep 30, 2021
2 parents bdb6854 + ba53be0 commit 76290ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The wolifecycle-maven-plugin is a Maven plugin to assist in the development and packaging of WebObjects applications and frameworks.

**Version**: 2.3
**Version**: 2.4

## Usage

Expand All @@ -16,7 +16,7 @@ You must add the wolifecycle-maven-plugin to the `pom.xml` in the `build` sectio
<plugin>
<groupId>org.wocommunity</groupId>
<artifactId>wolifecycle-maven-plugin</artifactId>
<version>2.3</version>
<version>2.4</version>
<extensions>true</extensions>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion src/main/scripts/wolifecycle.build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</delete> -->


<woapplication name="${finalName}" frameworksBaseURL="/WebObjects/${finalName}.woa/Contents/Frameworks" startupScriptName="${artifactId}" stdFrameworks="false" destDir="target" customInfoPListContent="${customInfoPListContent}" principalClass="${principalClass}" cfBundleVersion="${version}" cfBundleShortVersion="${version}">
<woapplication name="${finalName}" frameworksBaseURL="/WebObjects/${finalName}.woa/Contents/Frameworks" startupScriptName="${artifactId}" stdFrameworks="false" destDir="target" customInfoPListContent="${customInfoPListContent}" principalClass="${principalClass}" cfBundleVersion="${version}" cfBundleShortVersion="${version}" jvm="${jvm}" jvmOptions="${jvmOptions}" jdb="${jdb}" jdbOptions="${jdbOptions}">
<classes dir="target/classes">
</classes>
<lib dir="${dependencies.lib}">
Expand Down

0 comments on commit 76290ed

Please sign in to comment.