Ok, so you've just moved from one OS to another...
There is a big chance, that Maven settings are different, and you just forgot to move some repositories configurations, etc. to the new place.
Please check global Maven settings.xml or user-specific:
~/.m2/settings.xml on Linux and C:User[username].m2settings.xml on Windows.
Chances are you'll find something interesting.
After fixing settings (if it's the cause), I would suggest to run Maven dependency plugin goal 'purge-loca-repository' for removing your project's dependencies from your local Maven repository and re-resolving them from scratch:
mvn dependency:purge-local-repository
Regarding aopalliance-1.0 artifact -> I haven't found it in java.net2/sonatype repositories,
so please try Maven Central to resolve it:
<repository>
<id>central</id>
<name>Maven Central</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
Good Luck!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…