How can I get the list of artifacts in my Maven repository?
Is there a开发者_StackOverflow Maven goal to list the artifacts that are stored in my local Maven repository?
I'm not aware of any plugin doing that and, to be honest, I don't get the point. Maybe you could just use your OS file search feature to achieve your goal. If really you want to do this from Maven, then execute this command using the maven-exec-plugin. Another option would be to use the maven-antrun-plugin if you can find an Ant task allowing to find files. But, as I said, I don't get the point of this.
精彩评论