public static InternalKieModule fetchKModule(URL url, String fixedURL) {
KieModuleModel kieProject = KieModuleModelImpl.fromXML( url );
String pomProperties = getPomProperties( fixedURL );
GAV gav = GAVImpl.fromPropertiesString( pomProperties );
String rootPath = fixedURL;
if ( rootPath.lastIndexOf( ':' ) > 0 ) {
rootPath = fixedURL.substring( rootPath.lastIndexOf( ':' ) + 1 );
}