generate ddl for my dbunti hiber4nqate configration

2009-05-06 Thread tubin gen
My project uses spring , hibernate,dbunit for orm dao unit testing. I am using maven to build my project. The dbunit testing I use hsqldb with hibernate configration prop key=hibernate.hbm2ddl.autocreate-drop/prop, this creates tables in hsqldb and excutes all test, I am wondering If I can save

include jars from a folder

2009-05-06 Thread tubin gen
I have some of the jar files modified and kept them under folder ext-lib, there jars files are needed by my application, can I tell maven to include jars from this folder into the war file ? my pom right now uses scope system and systempath , I donot want to install them becasue we don't have

exclude transitive dependency

2009-05-07 Thread tubin gen
My project needs spring-modules-osworklow.jar , this module has dependency to spring-mock , the spring-mock has the same classes as spring-test and this has more classes , so I want to exclude transitive dependency for spring-mock , please tell me how to do this ?

adding jars from project folder into my war file

2009-05-07 Thread tubin gen
I have some jar files inside my project folder , and I want maven to include them inside WEB-INF/lib , I know one way to include is to create a custom ant task but the problem is maven creates a version number inside target ,my project is audit and when I see the target folder I see audit-1 ,

subproject dependency

2009-05-11 Thread tubin gen
I created a maven project which has three sub projects one for ear , one for war and one for jar.War has dependency to jar and ear has dependency to war. When I try to install project i get this error Reason: Failed to copy file for artifact[active project artifact: artifact =

ear project

2009-05-14 Thread tubin gen
I have a maven project with subprojects for jar, war, ear , a dependency like spring i need I need in both the modules jar and war , so where should I specify the dependency? in parent project or each project war and jar ?

avoid oracle driver jar

2009-05-18 Thread tubin gen
I have maven project , which is jar, war and ear. Ear I deploy in weblogic , and to save time I run war with jetty. because my project uses datasource , which is provided by weblogic and not by jetty and in order to run in jetty I add the deopendency dependency

jetty 7 maven plugin

2009-05-19 Thread tubin gen
plugin groupIdorg.mortbay.jetty/groupId artifactIdjetty-maven-plugin/artifactId version7.0.0.1beta0/version configuration contextPath/audit/contextPath jettyEnvXml${basedir}/jetty-env.xml/jettyEnvXml

mvn install for ear project

2009-05-19 Thread tubin gen
my project has subprojects one for ear , one for war and one for jar . I get this error when I run mvn install java.lang.NullPointerException at org.apache.maven.plugin.war.util.WebappStructure.getDependencies(WebappStructure.java:109) at

maven jetty plugin does not rebuild war

2009-05-20 Thread tubin gen
maven plugin in my pom plugin groupIdorg.mortbay.jetty/groupId artifactIdjetty-maven-plugin/artifactId version7.0.0.pre5/version configuration contextPath/audit/contextPath

error with maven-metadata-Agile Java.xml

2009-07-13 Thread tubin gen
All of a sudden I started getting this error Error message: Unable to get dependency information: Unable to read local copy of metadata: Cannot read metadata from 'C:\Documents and Settings\sairamm\.m2\repository\commons-collections\commons-collections\maven-metadata-Agile Java.xml': end tag name

spring dependency

2009-08-17 Thread tubin gen
My project needs spring dependency for which I added dependency groupIdorg.springframework/groupId artifactIdspring/artifactId version2.5.5/version /dependency I also need spring modules osworkflow for which I added dependency

difference between snapshot and rc

2009-08-31 Thread tubin gen
I don't know the difference between snapshot and rc , when maven repository has both which one should I use