> Dnia 5 marzec 2014 o 21:23 Howard <[email protected]> napisa?(a): [...] > For reference here's the part of the pom that is trying to download the > jar: > > <dependency> > <groupId>org.renci.databridge-util</groupId> > <artifactId>databridge-util</artifactId> > <version>1.0-BETA</version> > </dependency>
Read your POM, there is no databridge-util in the groupId. Dependency should read <dependency> <groupId>org.renci</groupId> <artifactId>databridge-util</artifactId> <version>1.0-BETA</version> </dependency> Regards, RafaĆ PS I love when people reply without providing actual answer :) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
