I have a Maven project that looks like the following:
- enterprise-pom
- commons
- core
- domain
- dao
- search
- importer-batch-app
- processor-batch-app
- systems
- server-system
- client-system
core depends on enterprise-pom and common.
I just worked on releasing 3.0.0 of core, by doing:
Release 3.0.0 of enterprise-pom
Release 3.0.0 of commons
Release 3.0.0 of core
All of these are at 3.0.1-SNAPSHOT and there's a tag created for 3.0.0 in SVN.
We did not want to release systems. So it's still on 3.0.0-SNAPSHOT.
Question:
Should i manually just change the systems pom to 3.0.1-SNAPSHOT without releasing it(as it's not going to be used at all)?
The systems depends on core. and the dependency is still at 3.0.0-SNAPSHOT, currently. What should that update to?