jvanzyl 2002/07/24 17:26:02
Modified: src/java/org/apache/maven ProjectVerifier.java
Log:
o we'll let -dev jars be failed deps that are checked for because too
many builds are still using them, so until we officially put the hammer
down we'll let them slide through.
Revision Changes Path
1.24 +2 -2
jakarta-turbine-maven/src/java/org/apache/maven/ProjectVerifier.java
Index: ProjectVerifier.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/ProjectVerifier.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ProjectVerifier.java 24 Jul 2002 22:15:39 -0000 1.23
+++ ProjectVerifier.java 25 Jul 2002 00:26:02 -0000 1.24
@@ -305,7 +305,7 @@
log.debug("Looking for " + jarFile.getCanonicalPath());
- if (jarFile.exists() == false || jar.endsWith("SNAPSHOT.jar"))
+ if (jarFile.exists() == false || jar.endsWith("SNAPSHOT.jar") ||
jar.endsWith("dev.jar"))
{
// The directory structure for this project may
// not exists so create it if missing.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>