Hmmm. If I were a betting person, I'd bet you don't program in java much.
Why? Oh, Why did you put your mod in package source? And then put your Items and such in different packages? None of that is proper java.
Use a package such as com.eaglenator.itz, or something similar and put all your classes in the package.
Also, why do you create and pass an Object Array to addRecipe. The signature expects multiple parameters, starting with an ItemStack instance and including the 3 Strings, and repeated Chars, and Item/Block/ItemStack instances in the proper order.
Try something like this:
GameRegistry.addShapedRecipe(new ItemStack(anItem), new String[]{"ABC", "CBA", " B "}, 'A', Items.arrow, 'B', Items.boat, 'C', Items.bone);
or
GameRegistry.addShapedRecipe(new ItemStack(anItem), "ABC", "CBA", " B ", 'A', Items.arrow, 'B', Items.boat, 'C', Items.bone);
It's not rocket science, but is precise.