On Oct 28, 2004, at 12:56, Sachin Bansal wrote:
I did just what you suggested, i.e. changed the version to SNAPSHOT version, but not it gives the error "fileNotFoundException: com.abc.def.B-1.0-SNAPSHOT.jar not found".
<dependency> <groupId>myProject</groupId> <artifactId>com.abc.def.B</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
<dependency> <groupId>myProject</groupId> <artifactId>com.abc.def.C</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
<dependency> <groupId>myProject</groupId> <artifactId>com.abc.def.D</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
I wonder where I am wrong.
Close. You should instead try "SNAPSHOT" instead of "1.0-SNAPSHOT" for the version:
<dependency>
<groupId>myProject</groupId>
<artifactId>com.abc.def.B</artifactId>
<version>SNAPSHOT</version>
</dependency>-- Craig S. Cottingham [EMAIL PROTECTED] OpenPGP key available from: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7977F79C
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
