Hi,

  I am using maven-jar-plugin-2.3.2, now i am trying to include 2 files from
other folder but now when it is creating the jar, it ends up with only with
only a few files in it (just the stuff in META-INF). The file that I
included is not in the jar either not the classes.


pom.xml is:- 

 <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-jar-plugin</artifactId>
                                 <version>2.3.2</version>
                                 <executions>
                                    <execution>
                                        <goals>
                                                <goal>jar</goal>
                                         </goals>
                                          <configuration>
                                                <includes>
                                                        
<include>${project.basedir}/**</include>
                                                
<include>${project.basedir}/../src/main/resources/BPP-Build/config/BPP_Beans.xml</include>
                                                
<include>${project.basedir}/../src/main/resources/BPP-Build/config/log4j.properties</include>
                                                </includes>
                                             <finalName>bpp</finalName>
                                   </configuration>
                                
              
            </execution>
          </executions>


                                 </plugin>


Any help is appreciated

--
View this message in context: 
http://maven.40175.n5.nabble.com/Jar-plugin-issue-tp4736854p4736854.html
Sent from the Maven - Users mailing list archive at Nabble.com.

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

Reply via email to