Skip to content

Commit

Permalink
check in missing applicationContext.xml (never gets used in the tests…
Browse files Browse the repository at this point in the history
…... figures); also a small whitespace change
  • Loading branch information
Paul Houle authored and Paul Houle committed Sep 24, 2013
1 parent e83799b commit 49efeda
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public int run(String[] arg0) throws Exception {
job.setMapOutputValueClass(LongWritable.class);
job.setOutputKeyClass(Triple.class);
job.setOutputValueClass(LongWritable.class);


FileInputFormat.addInputPath(job, new Path(input));
FileOutputFormat.setOutputPath(job, acceptedPath);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">

<!-- 1.0 Spring self-configuration -->
<context:component-scan base-package="com.ontology2.bakemono"/>

</beans>

0 comments on commit 49efeda

Please sign in to comment.