Re: maven sql plugin and clobs

2011-01-06 Thread Jay Perry

Hi,

I'm not exactly sure how it is generated as our DB Admin is on vacation
since he updates the file.  About the version of Oracle we are using it is
10.2.1.  I can see about escaping those values just to narrow down the
issue.  I'll also look into how the sqlplus option is done.  Let me know if
any of you can think of anything else.

Thanks,
Jay
-- 
View this message in context: 
http://maven.40175.n5.nabble.com/maven-sql-plugin-and-clobs-tp3315695p3331402.html
Sent from the Maven - Users mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



ordering of dependencies causes failures in mvn site

2010-08-11 Thread Jay Perry
Hi,

We are having an issue when running mvn site and setting a dependencies in a
particular order.

Here is the order of dependencies that causes failures because a class isn't
found during the JavaDocs report generation.


com.company.common
bc-common
1.0.0-SNAPSHOT


com.company.common
bc-common
1.0.0-SNAPSHOT
test-jar
test


If we swap the ordering of the dependencies above the site generation
passes:


com.company.common
bc-common
1.0.0-SNAPSHOT
test-jar
test


com.company.common
bc-common
1.0.0-SNAPSHOT


After doing some debugging it looks like the bc-common test-jar is the only
thing included in the classpath when ordering the dependencies with test-jar
at the bottom.  Looking to see if anyone has run into this.

Thanks,
Jay