Github user ChristianSchulte commented on the pull request:
https://github.com/apache/maven/pull/32#issuecomment-76122905
```
parent
module1
module2
```
With Maven 3 I need to
```
cmd>cd parent && mvn site-deploy -N && cd module1 && mvn site-deploy && cd
../module2 && mvn site-deploy
```
to get the same behaviour as executing
```
cmd>cd parent && mvn site-deploy
```
with Maven 2. So in Maven 3 I would like to
```
cmd>cd parent && mvn --legacy-reactor-resolution site-deploy
```
Pretty much the same way the following command line flag can be used to
make Maven 3 behave the same way as Maven 2.
```
-llr,--legacy-local-repository Use Maven 2 Legacy Local
Repository behaviour, ie no use of
_remote.repositories. Can also be
activated by using
-Dmaven.legacyLocalRepo=true
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]