RE: [mojo-user] Keystores and signing

2007-10-23 Thread Henrik Dohlmann
Yes, I know about the jar plugin. That what I would use to do the actual signing of a single jar. But, it is the handling of multiple keystores/keys for dev/release use and their placements I am interested in. Especially if there is some fancy way to create a project with the keystore/keys in an

Re: [mojo-user] dbunit-maven-plugin and hsql

2007-10-23 Thread leeand00
P.S. Here is the error that I get: $ mvn -Dformat=xml -Durl=jdbc:hsqldb:file:${basedir}/target/dbunit/db -Dusername=sa -Dpassword="" -Ddriv er="org.hsqldb.jdbcDriver" -Dtype="CLEAN_INSERT" -Dsrc=src/test/data/insert.xml dbunit:operation [INFO] Scanning for projects... [INFO] Searching repository

Re: [mojo-user] Keystores and signing

2007-10-23 Thread leeand00
Have you checked out the maven 2 jar plugin? http://maven.apache.org/plugins/maven-jar-plugin/ Henrik Dohlmann wrote: > > How do you guys handle developer/release keystores and keys for > jarsigning? > > I know that I can use the keytool-plugin to generate a keystore/key for > use under deve

[mojo-user] dbunit-maven-plugin and hsql

2007-10-23 Thread leeand00
Hello, I am trying to use the DBUnit plugin for Maven2 to import some data into a file hsqldb database Versions: - dbunit-maven-plugin - 1.0-beta-1 - hsqldb - 1.8.0.7 (The idea being that when I run "mvn test-compile::" it will read in my insert.xml file and place it into the file database at

[mojo-user] Keystores and signing

2007-10-23 Thread Henrik Dohlmann
How do you guys handle developer/release keystores and keys for jarsigning? I know that I can use the keytool-plugin to generate a keystore/key for use under development, but I haven't figured out how to resuse it without cleaning/regenerating everytime. Should I bind It to the clean phase, perh

RE: [mojo-user] Use webstart plugin with proguard

2007-10-23 Thread Henrik Dohlmann
Okay, I have something that works now J Just to summarize: I use proguard to obfuscate a bunch of jars together.. I use keytool to generate a test keystore and a test key. I use antrun to execute signjar on all the obfuscated jars with the test key. I use webstart to pull in the other deps

[mojo-user] 0% coverage shown by maven-cobertura+surefire-report

2007-10-23 Thread Антон
Hi. I created a simple test project that has just one class and a simple test for it. I want to generate test coverage reports with maven-cobertura-plugin and maven-surefire-report-plugin. However, when i run "mvn clean site", the coverage that is generated shows 0%. If I then run "mvn site" agai