Autowiring classes from external jar with Spring
Three months later, I now have the response thanks to this : Annotation scan not scanning external jars in classpath
As stated in the accepted answer, when using the -jar option the -cp option is ignored.
Running my application this way made it working as expected !
java -cp target/lib/external.jar:target/standalone.jar package.Main