Skip to content

Instantly share code, notes, and snippets.

@pvik
Last active August 29, 2015 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pvik/54e486e13066f699ca42 to your computer and use it in GitHub Desktop.
Save pvik/54e486e13066f699ca42 to your computer and use it in GitHub Desktop.
sqlserver_mvn.md
taken from [here]{http://claude.betancourt.us/add-microsoft-sql-jdbc-driver-to-maven/}
```
mvn install:install-file -Dfile=sqljdbc4.jar -Dpackaging=jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0
```
POM:
```
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment