Commit 9ceb896e9388badcd0f08cc5e982133c4aa6581c
1 parent
fef9b8c5
add ojdbc jar
Showing
1 changed file
with
25 additions
and
19 deletions
pom.xml
| 1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 3 | 3 | |
| 4 | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | 5 | <groupId>com.bsth</groupId> |
| ... | ... | @@ -237,27 +237,33 @@ |
| 237 | 237 | <version>1.13</version> |
| 238 | 238 | </dependency> |
| 239 | 239 | |
| 240 | - <dependency> | |
| 241 | - <groupId>org.dbunit</groupId> | |
| 242 | - <artifactId>dbunit</artifactId> | |
| 243 | - <version>2.4.9</version> | |
| 244 | - <scope>test</scope> | |
| 240 | + <dependency> | |
| 241 | + <groupId>org.dbunit</groupId> | |
| 242 | + <artifactId>dbunit</artifactId> | |
| 243 | + <version>2.4.9</version> | |
| 244 | + <scope>test</scope> | |
| 245 | 245 | |
| 246 | - <exclusions> | |
| 247 | - <exclusion> | |
| 248 | - <groupId>org.slf4j</groupId> | |
| 249 | - <artifactId>slf4j-api</artifactId> | |
| 250 | - </exclusion> | |
| 251 | - </exclusions> | |
| 252 | - </dependency> | |
| 246 | + <exclusions> | |
| 247 | + <exclusion> | |
| 248 | + <groupId>org.slf4j</groupId> | |
| 249 | + <artifactId>slf4j-api</artifactId> | |
| 250 | + </exclusion> | |
| 251 | + </exclusions> | |
| 252 | + </dependency> | |
| 253 | + | |
| 254 | + <dependency> | |
| 255 | + <groupId>com.h2database</groupId> | |
| 256 | + <artifactId>h2</artifactId> | |
| 257 | + <version>1.2.132</version> | |
| 258 | + <scope>test</scope> | |
| 259 | + </dependency> | |
| 253 | 260 | |
| 254 | - <dependency> | |
| 255 | - <groupId>com.h2database</groupId> | |
| 256 | - <artifactId>h2</artifactId> | |
| 257 | - <version>1.2.132</version> | |
| 258 | - <scope>test</scope> | |
| 259 | - </dependency> | |
| 260 | 261 | |
| 262 | + <dependency> | |
| 263 | + <groupId>ojdbc</groupId> | |
| 264 | + <artifactId>ojdbc</artifactId> | |
| 265 | + <version>14</version> | |
| 266 | + </dependency> | |
| 261 | 267 | </dependencies> |
| 262 | 268 | |
| 263 | 269 | <dependencyManagement> | ... | ... |