I'm trying to JAR my application using Ant, but both my applications hivemodule.xml and the HiveMinds one end up under META-INF, so when the JAR is executed only the last one written is found. This means I always get Exception in thread "main" org.apache.hivemind.ApplicationRuntimeException: There is no service point for interface... thrown.
 
      <metainf dir="src/main/resources/META-INF">
       <include name="hivemodule.xml"/>               <-- location of the apps hivemodule
      </metainf>
      <zipgroupfileset dir="lib" includes="**/*.*"/>     <-- contains hivemind.jar
 
How can the 2 coexist? Must I write my own registry loader? (seems drastic)
 
TIA
John

Reply via email to