I'm unable to complete the B1 tutorial for the BDIv3 tutorial due to a error around defining the AgentFactory for the agent. Here the the TranslationBDI.java file: package com.baseagent; import jadex.bdiv3.BDIAgentFactory; import jadex.bdiv3.annotation.Body; import jadex.bdiv3.annotation.Plan; import jadex.bdiv3.annotation.Plans; import jadex.bdiv3.features.IBDIAgentFeature; import jadex.micro.annotation.Agent; import jadex.micro.annotation.AgentBody; import jadex.micro.annotation.AgentFeature; import...
So I have used the following in the dependencies in my pom.xml file after looking at the Maven library: <dependency> <groupId>org.activecomponents.jadex</groupId> <artifactId>jadex-platform</artifactId> <version>3.0.117</version> </dependency> This seems to have resolved the issue for the time being.
I'm a bit new to Jadex, and I've been getting an issue when going through the beginning tutorials for bdiv3 agents. Below is my Main.java file for the b1 tutorial. The main issue I've been having surrounds the PlatformConfiguration object and constructor. package com.baseagent; import jadex.base.PlatformConfiguration; import jadex.base.Starter; public class Main { public static void main(String[] args) { PlatformConfiguration config = PlatformConfiguration.getDefaultNoGui(); config.addComponent("com.baseagent.TranslationBDI.class");...
I'm a bit new to Jadex, and I've been getting an issue when going through the beginning tutorials for bdiv3 agents. Below is my Main.java file for the b1 tutorial. The main issue I've been having surrounds the PlatformConfiguration object and constructor. ```package com.baseagent; import jadex.base.PlatformConfiguration; import jadex.base.Starter; public class Main { public static void main(String[] args) { PlatformConfiguration config = PlatformConfiguration.getDefaultNoGui(); config.addComponent("com.baseagent.TranslationBDI.class");...
I'm a bit new to Jadex, and I've been getting an issue when going through the beginning tutorials for bdiv3 agents. Below is my Main.java file for the b1 tutorial. The main issue I've been having surrounds the PlatformConfiguration object and constructor. `package com.baseagent; import jadex.base.PlatformConfiguration; import jadex.base.Starter; public class Main { public static void main(String[] args) { PlatformConfiguration config = PlatformConfiguration.getDefaultNoGui(); config.addComponent("com.baseagent.TranslationBDI.class");...