MySQL Maven Dependency

I need to specify a MySQL database using Maven 2. Depending on what type of groupID and artifactID should I use?

How to find groupID and artifactID for different products? That is, I do not know them for MySQL, or are they not important? How it works?

+5
source share
1 answer

The main Maven repository is at repo.maven.apache.org. You can find it (for packages) at http://search.maven.org . The mysql search includes the mysql-java connector, which you probably want. Grouping and artifacts are listed on the search page.

+11
source

All Articles