Hi, > I use Eclipse IDE to develop this project with Maven plugin. I have > checked the name of these jars in Maven2 Dependencies. Their names are > db2jcc-9.jar anad db2jcc_licence-9.jar, respectively. I can not find any > support > for DB2. > > Can anyone help me???
You should have at least the following dependencies in your pom.xml: <dependency> <groupId>com.ibm.db2</groupId> <artifactId>db2jcc</artifactId> <version>9</version> </dependency> <dependency> <groupId>com.ibm.db2</groupId> <artifactId>db2jcc_license_cu</artifactId> <version>9</version> </dependency> If you only need the jars in test classes, add <scope>test</scope> in the above dependencies. I'd assume that this should work... HTH Thorsten --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
