The problem is that I have to use an existing path i.e.
(MyProject\src\conf\persistence.xml) and cannot change that....
Is there not a way to modify the POM in order for it to include my
persistence.xml??
Sorry I am a real beginner at Maven...
Julien.

2007/8/28, ben short <[EMAIL PROTECTED]>:
>
> I think you can just create /src/main/webapp/META-INF and put it in there.
>
> On 8/28/07, Julien Martin <[EMAIL PROTECTED]> wrote:
> > Thanks Ben,
> > Is there not a way to put it (persistence.xml) into meta-inf instead?
> > Julien.
> >
> > 2007/8/28, ben short <[EMAIL PROTECTED]>:
> > >
> > > persistence.xml needs to be on the class path doesn't it?
> > >
> > > Create a directory src/main/java/resources and put it in there. When
> > > maven packages up your war it will put all files in the resources
> > > directory into your war file under the WEB-INF/classes directory.
> > >
> > > Hope this helps.
> > >
> > > Ben
> > >
> > >
> > > On 8/28/07, Julien Martin <[EMAIL PROTECTED]> wrote:
> > > > Hello all,
> > > > How do I get Maven to include "persistence.xml" into a web app??
> > > > Any clue welcome!
> > > > Julien.
> > > >
> > > > Here is my POM:
> > > >
> > > >
> > > > <project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
> > > > http://www.w3.org/2001/XMLSchema-instance
> "          xsi:schemaLocation="
> > > > http://maven.apache.org/POM/4.0.0
> > > http://maven.apache.org/maven-v4_0_0.xsd";>
> > > >     <modelVersion>4.0.0</modelVersion>
> > > >     <groupId>com.calyonfinancial</groupId>
> > > >     <artifactId>protide</artifactId>
> > > >     <packaging>war</packaging>
> > > >     <version>1.0-SNAPSHOT</version>
> > > >     <name>ProtideWeb</name>
> > > >     <build>
> > > >         <sourceDirectory>src</sourceDirectory>
> > > >         <outputDirectory>build</outputDirectory>
> > > >         <finalName>ProtideWeb</finalName>
> > > >         <plugins>
> > > >             <plugin>
> > > >                 <artifactId>maven-compiler-plugin</artifactId>
> > > >                 <configuration>
> > > >                     <source>1.5</source>
> > > >                     <target>1.5</target>
> > > >                 </configuration>
> > > >             </plugin>
> > > >             <plugin>
> > > >                 <groupId>org.apache.maven.plugins</groupId>
> > > >                 <artifactId>maven-war-plugin</artifactId>
> > > >                 <version>2.0</version>
> > > >                 <configuration>
> > > >                     <warSourceDirectory>web</warSourceDirectory>
> > > >                 </configuration>
> > > >             </plugin>
> > > >             <plugin>
> > > >                 <groupId>org.codehaus.mojo</groupId>
> > > >                 <artifactId>hibernate3-maven-plugin</artifactId>
> > > >                 <version>2.0-alpha-2</version>
> > > >             </plugin>
> > > >         </plugins>
> > > >     </build>
> > > >     <dependencies>
> > > >         <dependency>
> > > >             <groupId>org.hibernate</groupId>
> > > >             <artifactId>hibernate</artifactId>
> > > >             <version>3.2.1.ga</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.hibernate</groupId>
> > > >             <artifactId>hibernate-annotations</artifactId>
> > > >             <version>3.2.1.ga</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.hibernate</groupId>
> > > >             <artifactId>hibernate-entitymanager</artifactId>
> > > >             <version>3.2.1.ga</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.hibernate</groupId>
> > > >             <artifactId>hibernate-commons-annotations</artifactId>
> > > >             <version>3.3.0.ga</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.hibernate</groupId>
> > > >             <artifactId>hibernate-validator</artifactId>
> > > >             <version>3.0.0.ga</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>javax.persistence</groupId>
> > > >             <artifactId>persistence-api</artifactId>
> > > >             <version>1.0</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>log4j</groupId>
> > > >             <artifactId>log4j</artifactId>
> > > >             <version>1.2.14</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>com.sun.xml.bind</groupId>
> > > >             <artifactId>jaxb-impl</artifactId>
> > > >             <version>2.0</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>com.sun.xml.bind</groupId>
> > > >             <artifactId>jaxb-xjc</artifactId>
> > > >             <version>2.0</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>javax.xml.bind</groupId>
> > > >             <artifactId>jaxb-api</artifactId>
> > > >             <version>2.0</version>
> > > >         </dependency>
> > > >         <!--
> > > >         <dependency>
> > > >             <groupId>org.apache.maven</groupId>
> > > >             <artifactId>maven-project</artifactId>
> > > >             <version>2.0.4</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.apache.maven</groupId>
> > > >             <artifactId>maven-plugin-api</artifactId>
> > > >             <version>2.0.4</version>
> > > >         </dependency>
> > > >         -->
> > > >         <dependency>
> > > >             <groupId>jdbc</groupId>
> > > >             <artifactId>as400</artifactId>
> > > >             <version>5.1.0.1</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>javax.xml.bind</groupId>
> > > >             <artifactId>jsr173_api</artifactId>
> > > >             <version>1.0</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.apache.myfaces.core</groupId>
> > > >             <artifactId>myfaces-api</artifactId>
> > > >             <version>1.1.5</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.apache.myfaces.core</groupId>
> > > >             <artifactId>myfaces-impl</artifactId>
> > > >             <version>1.1.5</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.apache.myfaces.tomahawk</groupId>
> > > >             <artifactId>tomahawk</artifactId>
> > > >             <version>1.1.6</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>javax.servlet</groupId>
> > > >             <artifactId>servlet-api</artifactId>
> > > >             <version>2.4</version>
> > > >             <scope>provided</scope>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>javax.servlet</groupId>
> > > >             <artifactId>jsp-api</artifactId>
> > > >             <version>2.0</version>
> > > >             <scope>provided</scope>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.ajax4jsf</groupId>
> > > >             <artifactId>ajax4jsf</artifactId>
> > > >             <version>1.1.1</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.richfaces</groupId>
> > > >             <artifactId>richfaces</artifactId>
> > > >             <version>3.0.1</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.apache.poi</groupId>
> > > >             <artifactId>poi</artifactId>
> > > >             <version>3.0.1-FINAL</version>
> > > >         </dependency>
> > > >
> > > >
> > > >
> > > >         <!--
> > > >         <dependency>
> > > >             <groupId>org.apache.myfaces.trinidad</groupId>
> > > >             <artifactId>trinidad-api</artifactId>
> > > >             <version>1.0.2</version>
> > > >         </dependency>
> > > >         <dependency>
> > > >             <groupId>org.apache.myfaces.trinidad</groupId>
> > > >             <artifactId>trinidad-impl</artifactId>
> > > >             <version>1.0.2</version>
> > > >         </dependency>
> > > >
> > > >         <dependency>
> > > >             <groupId>org.ajax4jsf</groupId>
> > > >             <artifactId>a4j-trinidad</artifactId>
> > > >             <version>1.0</version>
> > > >         </dependency>
> > > >         -->
> > > >     </dependencies>
> > > > </project>
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to