Closed GoogleCodeExporter closed 9 years ago
All dependencies have to be managed. In Maven this is not a problem because of
"system" dependency scope.
More info
http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism
.html#System_Dependencies
Add:
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>your_version</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/sqljdbc4.jar</systemPath>
</dependency>
to your dependencies.
Alternatively you can install this dependency locally (like advised here
http://stackoverflow.com/questions/6942407/setting-up-maven-dependency-for-sql-s
erver) or deploy to your company repository if you have one to share it with
all users in your company.
Sorry for late response. For some reason I didn't get mail notification about
this issue.
Original comment by gslowiko...@gmail.com
on 12 Jul 2013 at 7:33
Original comment by gslowiko...@gmail.com
on 2 Jun 2014 at 7:46
Original issue reported on code.google.com by
emla...@gmail.com
on 26 Jun 2013 at 3:13