<gson.version>2.7</gson.version>
<json.version>20090211</json.version>
- <aai.core.version>1.4.1</aai.core.version>
+ <aai.core.version>1.4.2</aai.core.version>
<aai.schema.version>1.0.1</aai.schema.version>
<netty.handler.version>4.1.9.Final</netty.handler.version>
throw aai;
}
LoaderFactory loaderFactory = ctx.getBean(LoaderFactory.class);
- SchemaVersions schemaVersions = ctx.getBean(SchemaVersions.class);
+ SchemaVersions schemaVersions = (SchemaVersions) ctx.getBean("schemaVersions");
DataGrooming dataGrooming = new DataGrooming(loaderFactory, schemaVersions);
dataGrooming.execute(args);
}
throw aai;
}
AuditorFactory auditorFactory = ctx.getBean(AuditorFactory.class);
- SchemaVersions schemaVersions = ctx.getBean(SchemaVersions.class);
+ SchemaVersions schemaVersions = (SchemaVersions) ctx.getBean("schemaVersions");
EdgeIngestor edgeIngestor = ctx.getBean(EdgeIngestor.class);
String config = cArgs.config;
public String type = "graph";
-}
\ No newline at end of file
+}
import org.springframework.test.context.junit4.rules.SpringMethodRule;
@ContextConfiguration(classes = {
- SchemaLocationsBean.class,
+ ConfigConfiguration.class,
AAIConfigTranslator.class,
- SchemaVersions.class,
NodeIngestor.class,
EdgeIngestor.class,
EdgeSerializer.class,
String resource = IOUtils.toString(inputStream);
return resource;
}
-}
\ No newline at end of file
+}