Hello all!

First I have to say I am a newbie with Maven2.
I created a long time ago a combined Flex/J2EE project in Eclipse with Tomcat server and I have this default directory structure
- flex_src -> here are the Flex sources
- Flex 4.0 SDK
- bin-debug
- flex_libs -> Flex libs (I do not use one yet)
- src -> here are the Java sources / JUnit tests / ...
- WebContent -> with META-INF and WEB-INF

Now I want to integrate Maven2 into this existing project for Java, not for Flex.
So I installed Maven2 on my Windows 7 PC.

After doing this command:
mvn archetype:create -DgroupId=com.foo -DartifactId=com.foo.bar

I geht this additional structure to the existing directories:
- com.foo.bar
   - src
       - main
           - java
               - com
                   - foo
                       - App.java
       - test
           - java
               - com
                   - foo
                       - AppTest.java
       - pom.xml

Now, what should I do next? Copy all Java files (source and JUnit tests) from src/ into the directory in which App.java is located? And all of my JUnit / DbUnit tests into the folder in which AppTest.java is located?

Thanks a lot in advance for your help!
Best Regards Phantomias.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to