-
Notifications
You must be signed in to change notification settings - Fork 0
API Dependencies
This project is managed using the Maven framework. Using Maven we can manage our project name, version, and dependencies easily, without having to download anything by ourselves. Maven's META file is called pom.xml, this is where all Maven's configuration is set.
Here is a brief explanation as of what each loaded dependency does in our application.
- Tribuo is a machine learning API for us to train our model in.

Dependencies can be added by creating a new XML <dependency> element in the Maven META file. This dependency element should be located within the <dependencies> element. After having added a record, your IDE will tell you that the pom.xml file is not in sync with the downloaded dependencies. You can either tell your IDE to update dependencies manually every time, or you can enable auto-import, which does this job automatically for you.