Id did it this way: see the attachments

 

-----Original Message-----
From: John J. Franey [mailto:[EMAIL PROTECTED] 
Sent: Montag, 26. Februar 2007 17:24
To: [email protected]
Subject: Re: [m2] How to deploy all of the 3th party jars under the Jboss 
directory ?please.


A piece of the puzzle may be the assembly plugin, 
http://maven.apache.org/plugins/maven-assembly-plugin, to assemble the 
dependencies of your project into a zip file that you can unzip into your 
$JBOSS_HOME/server location.

Another piece of this puzzle may be the cargo plugin, 
http://cargo.codehaus.org/Maven2+plugin, which copies down a jboss distribution 
and configures it.  However, I'm not sure if it will allow deploy of a server's 
lib directory.


Regards,
John


秋秋 wrote:
> 
> Hello,
>     Everybody! ,I have create a webapp project,I want to deploy all of 
> the  3th party jars in the directory 
> $JBOSS_HOME/server/ProjectName/lib,How can I do?What plugins can I 
> use?please help.
> 
> thanks in advance.
> 
> 

--
View this message in context: 
http://www.nabble.com/How-to-deploy-all-of-the-3th-party-jars-under-the-Jboss-directory--please.-tf3291868s177.html#a9161867
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

<?xml version="1.0" encoding="UTF-8"?>
<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";>

  <parent>
	<groupId>eds.tweb</groupId>
  	<artifactId>tweb</artifactId>
  	<version>1.0</version>
  	<relativePath>../org-tweb/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>eds.tweb.container.jboss</groupId>
  <artifactId>jboss-tweb</artifactId>
  <packaging>pom</packaging>
  <version>${jboss.server.version}</version>
  <name>JBoss ${jboss.server.version}</name>
  <url>${tweb.repository.url}</url>
  
  <scm>
  	<connection>
  		scm:svn:svn://chbbs229.ch.eds.com/jboss/trunk/
  	</connection>
  </scm>
  
  <dependencyManagement>
  	<dependencies>
  	    <!-- **************************** -->
    	<!-- *  JBoss libraries         * -->
    	<!-- **************************** -->
  		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss</artifactId>
			<version>${jboss.server.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-client</artifactId>
			<version>${jboss.server.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-j2ee</artifactId>
			<version>${jboss.server.version}</version>
			<scope>provided</scope>
		</dependency>
  		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jboss-common</artifactId>
			<version>${jboss.server.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>jboss</groupId>
			<artifactId>scheduler-plugin</artifactId>
			<version>${jboss.server.version}</version>
			<scope>provided</scope>
     	</dependency>
		<dependency>
		    <groupId>javax.activation</groupId>
		    <artifactId>activation</artifactId>
		    <version>1.1</version>
		    <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.mail</groupId>
			<artifactId>mail</artifactId>
			<version>1.4</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.4</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.8</version>
			<scope>provided</scope>
		</dependency>
		<!-- **************************** -->
    	<!-- *  tweb libraries          * -->
    	<!-- **************************** -->
		<dependency>
      		<groupId>eds.tweb.service</groupId>
      		<artifactId>serviceLocator</artifactId>
      		<version>1.0</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>eds.tweb.service</groupId>
      		<artifactId>scheduler</artifactId>
      		<version>1.0-SNAPSHOT</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>eds.tweb.fsConnector</groupId>
      		<artifactId>fsConnector</artifactId>
      		<version>1.0</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>eds.tweb.ldapConnector</groupId>
      		<artifactId>ldapConnector</artifactId>
      		<version>1.0</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>eds.tweb.luceneConnector</groupId>
      		<artifactId>luceneConnector</artifactId>
      		<version>1.0-SNAPSHOT</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>eds.tweb.service.mail</groupId>
      		<artifactId>tweb-mail-ejb</artifactId>
      		<version>1.0</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
  	  		<groupId>eds.tweb.maintenance</groupId>
  			<artifactId>tweb-maintenance-ejb</artifactId>
  			<version>1.0-SNAPSHOT</version>
  			<scope>provided</scope>
  		</dependency>
  		<dependency>
  	  		<groupId>eds.tweb.admin</groupId>
  			<artifactId>admin-ejb</artifactId>
  			<version>1.0-SNAPSHOT</version>
  			<scope>provided</scope>
  		</dependency>
    	<dependency>
      		<groupId>eds.tweb.wsmqConnector</groupId>
      		<artifactId>wsmqConnector</artifactId>
      		<version>1.0</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
   			<groupId>eds.tweb.service</groupId>
   			<artifactId>twebMenuParser</artifactId>
   			<version>1.0</version>
			<scope>compile</scope>
   		</dependency>
   		<dependency>
    		<groupId>eds.tweb.service</groupId>
    		<artifactId>timeoutHandler</artifactId>
    		<version>1.0-SNAPSHOT</version>
    		<scope>compile</scope>
  	  	</dependency>
   		<dependency>
  	  		<groupId>eds.tweb.tpflog</groupId>
  			<artifactId>tpflog-ejb</artifactId>
  			<version>1.0</version>
  			<scope>provided</scope>
  		</dependency>
  		<dependency>
  	  		<groupId>eds.tweb.tpflog.tpflog-web</groupId>
  			<artifactId>tpflog-web</artifactId>
  			<version>1.0</version>
  			<scope>provided</scope>
  		</dependency>
  		<dependency>
  		  	<groupId>eds.tweb.catlog.catlog-ejb</groupId>
  			<artifactId>catlog-ejb</artifactId>
  			<version>1.0</version>
  			<scope>provided</scope>
  		</dependency>
  		<dependency>
  		  	<groupId>eds.tweb.catlog.catlog-web</groupId>
  			<artifactId>catlog-web</artifactId>
  			<version>1.0</version>
  			<scope>provided</scope>
  		</dependency>
  		
    	<!-- **************************** -->
    	<!-- *  Websphere MQ libraries  * -->
    	<!-- **************************** -->
    	<dependency>
			<groupId>com.ibm</groupId>
			<artifactId>mq</artifactId>
			<version>6.0.1.1</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
			<groupId>com.ibm</groupId>
			<artifactId>mqjms</artifactId>
			<version>6.0.1.1</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
			<groupId>com.ibm</groupId>
			<artifactId>dhbcore</artifactId>
			<version>6.0.1.1</version>
			<scope>provided</scope>
    	</dependency>
    	<dependency>
			<groupId>com.ibm</groupId>
			<artifactId>mqetclient</artifactId>
			<version>6.0.1.1</version>
			<scope>provided</scope>
    	</dependency>
    	<!-- *********************************************** -->
    	<!-- *  JavaServer Faces                           * -->
    	<!-- *********************************************** -->
		<dependency>
      		<groupId>org.apache.myfaces.core</groupId>
      		<artifactId>myfaces-api</artifactId>
      		<version>1.1.3</version>
      		<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>org.apache.myfaces.core</groupId>
      		<artifactId>myfaces-impl</artifactId>
      		<version>1.1.3</version>
      		<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>org.apache.myfaces.tomahawk</groupId>
      		<artifactId>tomahawk</artifactId>
      		<version>1.1.2</version>
      		<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>org.apache.myfaces.tomahawk</groupId>
      		<artifactId>tomahawk-sandbox</artifactId>
      		<version>1.1.5</version>
      		<scope>provided</scope>
    	</dependency>
    	<dependency>
      		<groupId>htmLib</groupId>
      		<artifactId>htmLib</artifactId>
      		<version>0.3</version>
      		<scope>provided</scope>
    	</dependency>
    	<dependency>
    		<groupId>ajax4jsf</groupId>
    		<artifactId>ajax4jsf</artifactId>
    		<version>1.0.5</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>jenia</groupId>
    		<artifactId>jenia4faces-commons</artifactId>
    		<version>1.2</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>jenia</groupId>
    		<artifactId>jenia4faces-chart</artifactId>
    		<version>1.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>jenia</groupId>
    		<artifactId>jenia4faces-popup</artifactId>
    		<version>1.2</version>
    		<scope>provided</scope>
  		</dependency>
  		<!--  
  		<dependency>
    		<groupId>icefaces</groupId>
    		<artifactId>icefaces</artifactId>
    		<version>1.5.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>icefaces</groupId>
    		<artifactId>icefaces-comps</artifactId>
    		<version>1.5.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>icefaces</groupId>
    		<artifactId>icefaces-facelets</artifactId>
    		<version>1.5.1</version>
    		<scope>provided</scope>
  		</dependency>
  		-->
  		<dependency>
    		<groupId>opensymphony</groupId>
    		<artifactId>oscache</artifactId>
    		<version>2.3.2</version>
    		<scope>provided</scope>
  		</dependency>
  		<!-- *********************************************** -->
    	<!-- *  Apache Libraries                           * -->
    	<!-- *********************************************** -->
    	<dependency>
    		<groupId>commons-digester</groupId>
    		<artifactId>commons-digester</artifactId>
    		<version>1.7</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>commons-fileupload</groupId>
    		<artifactId>commons-fileupload</artifactId>
    		<version>1.1.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>commons-lang</groupId>
    		<artifactId>commons-lang</artifactId>
    		<version>2.2</version>
    		<scope>provided</scope>
  		</dependency>
		<dependency>
    		<groupId>commons-beanutils</groupId>
    		<artifactId>commons-beanutils</artifactId>
    		<version>1.6</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>commons-collections</groupId>
    		<artifactId>commons-collections</artifactId>
    		<version>2.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>commons-io</groupId>
    		<artifactId>commons-io</artifactId>
    		<version>1.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>commons-logging</groupId>
    		<artifactId>commons-logging</artifactId>
    		<version>1.0</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>commons-codec</groupId>
    		<artifactId>commons-codec</artifactId>
    		<version>1.3</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>org.apache.ant</groupId>
    		<artifactId>ant</artifactId>
    		<version>1.7.0</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>org.apache.derby</groupId>
    		<artifactId>derby</artifactId>
    		<version>10.1.3.1</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>taglibs</groupId>
    		<artifactId>standard</artifactId>
    		<version>1.1.2</version>
    		<scope>provided</scope>
  		</dependency>
  		<dependency>
    		<groupId>nekohtml</groupId>
    		<artifactId>nekohtml</artifactId>
    		<version>0.9.5</version>
    		<scope>provided</scope>
  		</dependency>
  		<!-- *********************************************** -->
    	<!-- *  Sun Libraries                              * -->
    	<!-- *********************************************** -->
  		<dependency>
    		<groupId>javax.servlet</groupId>
    		<artifactId>jstl</artifactId>
    		<version>1.1.2</version>
    		<scope>provided</scope>
  		</dependency>
  		<!-- *********************************************** -->
    	<!-- *  Other Libraries                            * -->
    	<!-- *********************************************** -->  		
		<dependency>
		    <groupId>xmllight</groupId>
		    <artifactId>xmllight</artifactId>
		    <version>2.0.0</version>
		    <scope>provided</scope>
		</dependency>
		<dependency>
	        <groupId>jdom</groupId>
	        <artifactId>jdom</artifactId>
	        <version>1.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
	        <groupId>jrobin</groupId>
	        <artifactId>jrobin</artifactId>
	        <version>1.4.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
	        <groupId>jfree</groupId>
	        <artifactId>jfreechart</artifactId>
	        <version>1.0.3</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
	        <groupId>jfree</groupId>
	        <artifactId>jcommon</artifactId>
	        <version>1.0.6</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
	        <groupId>jfree</groupId>
	        <artifactId>jfreereport</artifactId>
	        <version>0.8.6</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
	        <groupId>jfree</groupId>
	        <artifactId>jfreereport-ext</artifactId>
	        <version>0.8.6</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>batik</groupId>
			<artifactId>batik-svggen</artifactId>
			<version>1.6-1</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>batik</groupId>
			<artifactId>batik-util</artifactId>
			<version>1.6-1</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>batik</groupId>
			<artifactId>batik-ext</artifactId>
			<version>1.6-1</version>
	      	<scope>provided</scope>
	  	</dependency>
	  	<dependency>
			<groupId>batik</groupId>
			<artifactId>batik-awt-util</artifactId>
			<version>1.6-1</version>
	        <scope>provided</scope>
	  	</dependency>
	  	<dependency>
			<groupId>batik</groupId>
			<artifactId>batik-dom</artifactId>
			<version>1.6-1</version>
	        <scope>provided</scope>
	 	 </dependency>
	  	<dependency>
			<groupId>batik</groupId>
			<artifactId>batik-xml</artifactId>
			<version>1.6-1</version>
	        <scope>provided</scope>
	  	</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>3.1.14</version>
	        <scope>provided</scope>
		</dependency>
		<!--  
		<dependency>
			<groupId>ejindex</groupId>
			<artifactId>ejindex</artifactId>
			<version>0.9.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>ejindex</groupId>
			<artifactId>exoutils</artifactId>
			<version>0.9.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>ejindex.ejindex-ejb</groupId>
			<artifactId>ejindex-ejb</artifactId>
			<version>0.9.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>ejindex.ejindex-ejb</groupId>
			<artifactId>ejindex-service</artifactId>
			<version>0.9.0</version>
			<type>xml</type>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>ejindex</groupId>
			<artifactId>lucene-ejindex</artifactId>
			<version>0.9.0</version>
	        <scope>provided</scope>
		</dependency>
		-->
		<dependency>
			<groupId>org.apache.lucene</groupId>
			<artifactId>lucene-core</artifactId>
			<version>2.0.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.lucene</groupId>
			<artifactId>lucene-spellchecker</artifactId>
			<version>2.0.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.lucene</groupId>
			<artifactId>lucene-highlighter</artifactId>
			<version>2.0.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.lucene</groupId>
			<artifactId>lucene-demos</artifactId>
			<version>2.0.0</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.htmlparser</groupId>
			<artifactId>htmlparser</artifactId>
			<version>1.6</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>poi</groupId>
			<artifactId>poi</artifactId>
			<version>2.5.1-final-20040804</version>
	        <scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>joda-time</groupId>
			<artifactId>joda-time</artifactId>
			<version>1.4</version>
	        <scope>provided</scope>
		</dependency>
		
		
		
	</dependencies>
  </dependencyManagement>
  
</project>
<?xml version="1.0" encoding="UTF-8"?>
<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";>

  
  <!-- Server must be restarted afterwards ! -->
  <parent>
	<groupId>eds.tweb.container.jboss</groupId>
  	<artifactId>jboss-tweb</artifactId>
  	<version>4.0.5</version>
  	<relativePath>../jboss-tweb/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>eds.tweb.container.jboss</groupId>
  <artifactId>jboss-tweb-local</artifactId>
  <packaging>pom</packaging>
  <version>${parent.version}</version>
  <name>JBoss Local ${parent.version}</name>
  <url>${tweb.repository.url}</url>
  
  <build>
  	<plugins>
		<plugin>
	  		<groupId>org.apache.maven.plugins</groupId>
	    	<artifactId>maven-dependency-plugin</artifactId>
	    	<version>2.0-alpha-1</version>
       		<executions>
 	       		<execution>
	           		<id>install libraries on local server to lib folder</id>
	           		<phase>deploy</phase>
	           		<goals>
	           			<goal>copy</goal>
	           		</goals>
	           		<configuration>
	           			<artifactItems>
					    	<artifactItem>
								<groupId>com.ibm</groupId>
								<artifactId>mq</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
								<groupId>com.ibm</groupId>
								<artifactId>mqjms</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
								<groupId>com.ibm</groupId>
								<artifactId>dhbcore</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
								<groupId>com.ibm</groupId>
								<artifactId>mqetclient</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
						        <groupId>xmllight</groupId>
						        <artifactId>xmllight</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
							    <groupId>jdom</groupId>
							    <artifactId>jdom</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
							    <groupId>jrobin</groupId>
							    <artifactId>jrobin</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>jfree</groupId>
						        <artifactId>jfreechart</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>jfree</groupId>
						        <artifactId>jcommon</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>jfree</groupId>
						        <artifactId>jfreereport</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>jfree</groupId>
						        <artifactId>jfreereport-ext</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>batik</groupId>
								<artifactId>batik-svggen</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>batik</groupId>
								<artifactId>batik-util</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>batik</groupId>
								<artifactId>batik-ext</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>batik</groupId>
								<artifactId>batik-awt-util</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>batik</groupId>
								<artifactId>batik-dom</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>batik</groupId>
								<artifactId>batik-xml</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>mysql</groupId>
								<artifactId>mysql-connector-java</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
					    		<groupId>commons-digester</groupId>
					    		<artifactId>commons-digester</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					    		<groupId>commons-fileupload</groupId>
					    		<artifactId>commons-fileupload</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					    		<groupId>commons-lang</groupId>
					    		<artifactId>commons-lang</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
							<artifactItem>
					    		<groupId>commons-fileupload</groupId>
					    		<artifactId>commons-fileupload</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
							<artifactItem>
					    		<groupId>commons-beanutils</groupId>
					    		<artifactId>commons-beanutils</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					    		<groupId>commons-io</groupId>
					    		<artifactId>commons-io</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					  			<groupId>commons-codec</groupId>
    							<artifactId>commons-codec</artifactId>
    							<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					  			<groupId>commons-logging</groupId>
    							<artifactId>commons-logging</artifactId>
    							<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					    		<groupId>org.apache.ant</groupId>
					    		<artifactId>ant</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		<artifactItem>
					    		<groupId>eds.tweb.service</groupId>
					    		<artifactId>serviceLocator</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		<!--  
					  		<artifactItem>
					    		<groupId>eds.tweb.service</groupId>
					    		<artifactId>scheduler</artifactId>
					    		<overWrite>true</overWrite>
					  		</artifactItem>
					  		-->
					  		<artifactItem>
    							<groupId>jenia</groupId>
    							<artifactId>jenia4faces-commons</artifactId>
    							<overWrite>true</overWrite>
  							</artifactItem>
  		  					<artifactItem>
    							<groupId>javax.servlet</groupId>
    							<artifactId>jstl</artifactId>
    							<overWrite>true</overWrite>
  							</artifactItem>
  							<artifactItem>
      							<groupId>org.apache.myfaces.core</groupId>
      							<artifactId>myfaces-api</artifactId>
      							<overWrite>true</overWrite>
    						</artifactItem>
    						<artifactItem>
    							<groupId>nekohtml</groupId>
    							<artifactId>nekohtml</artifactId>
    							<overWrite>true</overWrite>
  							</artifactItem>
  							<!--  
  							<artifactItem>
								<groupId>ejindex</groupId>
								<artifactId>ejindex</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>ejindex</groupId>
								<artifactId>exoutils</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							-->
  							<artifactItem>
								<groupId>org.apache.lucene</groupId>
								<artifactId>lucene-core</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>org.apache.lucene</groupId>
								<artifactId>lucene-spellchecker</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>org.apache.lucene</groupId>
								<artifactId>lucene-highlighter</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>org.apache.lucene</groupId>
								<artifactId>lucene-demos</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>org.htmlparser</groupId>
								<artifactId>htmlparser</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>poi</groupId>
								<artifactId>poi</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>joda-time</groupId>
								<artifactId>joda-time</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
    							<groupId>org.apache.derby</groupId>
    							<artifactId>derby</artifactId>
    							<overWrite>true</overWrite>
  							</artifactItem>
							
	       		 		</artifactItems>
	              		<outputDirectory>${local.server.dir}/${lib.dir}/</outputDirectory>
	              		<overWriteReleases>true</overWriteReleases>
	              		<overWriteSnapshots>true</overWriteSnapshots>
	            	</configuration>
	          	</execution>
	          	
	          	<!--  
	          	<execution>
	           		<id>install ejindex applications on local server to deploy folder</id>
	           		<phase>deploy</phase>
	           		<goals>
	           			<goal>copy</goal>
	           		</goals>
	           		<configuration>
	           			<artifactItems>
	           				<artifactItem>
								<groupId>ejindex.ejindex-ejb</groupId>
								<artifactId>ejindex-ejb</artifactId>
								<overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
								<groupId>ejindex.ejindex-ejb</groupId>
								<artifactId>ejindex-service</artifactId>
								<version>0.9.0</version>
								<type>xml</type>
								<destFileName>ejindex-service.xml</destFileName>
								<overWrite>true</overWrite>
							</artifactItem>
	           			</artifactItems>
	           			<outputDirectory>${local.server.dir}/${deploy.dir}/${org.deploy.folder.name}/ejindex</outputDirectory>
	              		<overWriteReleases>true</overWriteReleases>
	              		<overWriteSnapshots>true</overWriteSnapshots>
	            	</configuration>
	          	</execution>
	          	-->
	          	
	          	<execution>
	           		<id>install tld libraries on local server</id>
	           		<phase>deploy</phase>
	           		<goals>
	           			<goal>copy</goal>
	           		</goals>
	           		<configuration>
	           			<artifactItems>
					    	<artifactItem>
								<groupId>org.apache.myfaces.core</groupId>
								<artifactId>myfaces-impl</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
								<groupId>org.apache.myfaces.tomahawk</groupId>
								<artifactId>tomahawk</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
								<groupId>htmLib</groupId>
								<artifactId>htmLib</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
								<groupId>taglibs</groupId>
								<artifactId>standard</artifactId>
								<overWrite>true</overWrite>
					    	</artifactItem>
					    	<artifactItem>
						        <groupId>jenia</groupId>
						        <artifactId>jenia4faces-popup</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
							    <groupId>jenia</groupId>
							    <artifactId>jenia4faces-chart</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
							    <groupId>org.apache.myfaces.tomahawk</groupId>
							    <artifactId>tomahawk-sandbox</artifactId>
							    <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>ajax4jsf</groupId>
						        <artifactId>ajax4jsf</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<!--  
							<artifactItem>
						        <groupId>icefaces</groupId>
						        <artifactId>icefaces</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>icefaces</groupId>
						        <artifactId>icefaces-comps</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							<artifactItem>
						        <groupId>icefaces</groupId>
						        <artifactId>icefaces-facelets</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							-->
							<artifactItem>
						        <groupId>opensymphony</groupId>
						        <artifactId>oscache</artifactId>
						        <overWrite>true</overWrite>
							</artifactItem>
							
	       		 		</artifactItems>
	              		<outputDirectory>${local.server.dir}/${tld.dir}/</outputDirectory>
	              		<overWriteReleases>true</overWriteReleases>
	              		<overWriteSnapshots>true</overWriteSnapshots>
	            	</configuration>
	          	</execution>
	          	
       		</executions>
	    </plugin>
	</plugins>
  </build>
  
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to