WASdev / standards.jsr352.jbatch

Home of 'jbatch', a compatible implementation of the Jakarta Batch specification (and the former Reference Implementation for the JSR 352, Batch Applications for the Java Platform specification).
Other
21 stars 18 forks source link

Changes to maven config after refactor to enable building (on my machine) #3

Closed BrentDouglas closed 10 years ago

BrentDouglas commented 10 years ago

Most important change is to make internal dependencies point to artifacts generated from this new repository layout and artifact naming scheme rather than artifacts generated from the old layout.

The JAXB sources were not being generated on my system due interaction between to the force="no" attribute and the way things are copied around.

Promotes dependency management into the parent projects pom and adds explicit versions for some plugins that were missing them. One of them was causing a failure as maven was attempting to use an outdated version of the plugin it found in my local repo that was missing some bug fix that this project needed.

scottkurz commented 10 years ago

Brent, thanks for writing this up so clearly in this and the other issue. Since I didn't get a chance to review the POM dependency refactoring, would you be willing to separate out the 37fd7db commit to a separate PR?

Asking since I'm not familiar how to grab just one commit without you getting credit for it. Thanks

BrentDouglas commented 10 years ago

No worries, I'll work on that now

BrentDouglas commented 10 years ago

Moved 37fd7db to #8

BrentDouglas commented 10 years ago

Also to get one commit use git cherry-pick <sha> which will pull that commit onto the current branch.

scottkurz commented 10 years ago

Thanks Brent !