I am hoping to use MS SQL Server JDBC driver found at Maven.
However, I noticed that mvnrepository.com labels this artifact in test scope, why?
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.2.2.jre8</version>
<scope>test</scope>
</dependency>
The definition I found about scope "test" is:
This scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases.
So I am curious. Why is it labeled as test in scope? Is it ready for production use?
Please go to this Maven page and you will find that each dependency is listed with "test" scope.
https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc