Jboss-common-core maven dependencies
Does anyone know the repositories where we can download jboss-common-core and all its dependencies. Dependencies are those that cannot be found.
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<version>2.0.4.GA</version>
</dependency>
I've tried http://mvnrepository.com/artifact/jboss/jboss-common-core/2.0.4.GA and https://repository.jboss.org/nexus/content/groups/public/jboss/jboss-common- core / 2.0.4.GA / .
source to share
Similar to Maven Central:
http://search.maven.org/#artifactdetails%7Cjboss%7Cjboss-common-core%7C2.0.4.GA%7Cjar
source to share
It may be too late to answer this like it is now, 2016, but it might help someone else.
To get a minimalist version of this particular jar / pom, you can get it here:
https://repo.spring.io/libs-milestone
Interestingly, if you try to get it from other repositories, the pom file is different and has many more dependencies that cannot be found as above.
I am currently using minimalist and it works, but if I look at a few other repos, they all have more time, harder to solve ... so I think it might be dangerous to use minimalist.
Hope it helps someone out there.
source to share