1.0.2
Version 1.0.2 of the CICS bundle Maven plugin is now available.
Breaking changes
This release contains the following breaking changes:
-
#152 Rename resources folder to bundleParts
-
#153 Allow bundle parts directory to be configurable
More details: Previously, non-Java-based CICS bundle parts such as programs or URI maps could be placed in
src/main/resources
to have them included into the bundle. This had a confusing effect when using the standalone project form, because these bundle parts were picked up by both the CICS bundle plugin and the Java plugin, so they ended up both inside the CICS bundle and inside the JAR/WAR/etc.Now, non-Java-based CICS bundle parts should be put in
src/main/bundleParts
, and they will only end up in the CICS bundle.You can also configure the location of this folder, relative to
src/main
using the<bundlePartsDirectory>
property.
Fixes and chores
This release includes the following fix:
- #149 Store password as char arrays