idea project jdk

2006-10-11 Thread Paul Barry
Hello, When I followed the tutorial at http://maven.apache.org/guides/getting-started/index.html, after I ran mvn idea:idea and opened the project in idea, the project jdk was not set. Is there something I can do in maven to have the project jdk said.

Re: idea project jdk

2006-10-11 Thread Paul Barry
now. But that message should porbably be changed to read: jdkName is not set, using [1.5] as default. On 10/11/06, Paul Barry [EMAIL PROTECTED] wrote: Hello, When I followed the tutorial at http://maven.apache.org/guides/getting-started/index.html, after I ran mvn idea:idea and opened

Re: idea project jdk

2006-10-12 Thread Paul Barry
migrated from idea 4 to 5: you could be in 5 with a name of java version1.5.0_08, because that name was imported from 4. Not sure what happens in the new idea 6 though, I would expect it to behave like 5. Paul Barry wrote, On 2006-10-11 10:20 PM: Maven says this: jdkName is not set, using [java

Creating a webapp archetype

2006-10-17 Thread Paul Barry
I have an archetype with the following structure: maven-archetype-mywebapp |-- pom.xml `-- src `-- main `-- resources |-- META-INF | `-- archetype.xml `-- archetype-resources |-- pom.xml `-- src |--

Re: Creating a webapp archetype

2006-10-18 Thread Paul Barry
The standard directory layout says it should be in src/main/webapp http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html On 10/17/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 10/17/06, Paul Barry [EMAIL PROTECTED] wrote: When I create my project from

Re: custom archetype : filtering directory names

2006-10-18 Thread Paul Barry
Sorry to take this a little of topic, but what is ${keys}? Is there documentation somewhere that says what replacements you can use in custom archetypes? On 10/18/06, Jan-Christopher Bals [EMAIL PROTECTED] wrote: Hi! I am currently building a custom archetype. In addition to the replacement

Re: Creating a webapp archetype

2006-10-18 Thread Paul Barry
, Paul Barry [EMAIL PROTECTED] wrote: The standard directory layout says it should be in src/main/webapp http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html On 10/17/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 10/17/06, Paul Barry [EMAIL PROTECTED] wrote

Performing tasks before a goal

2006-11-07 Thread Paul Barry
Is there a way to perform a task before a goal executes? Specifically what I'm looking to do is load data into my test database before all my tests run. I'm using Spring's AbstractTransactionalDataSourceSpringContextTests, which rolls back all changes after each test, so that I don't have to

Re: Performing tasks before a goal

2006-11-09 Thread Paul Barry
, Wayne Fay [EMAIL PROTECTED] wrote: Assuming you're using Maven2... Have you looked at the complete list of phases? http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html Sounds to me like you might want to use @process-test-resources. Wayne On 11/7/06, Paul Barry [EMAIL