show/hide this revision's text 2 improved formatting

Actually I have found a different way: Dependency plugin!

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-dependency-plugin</artifactId>
  <executions>
    <execution>
      <id>copy-to-ebs</id>
      <phase>deploy</phase>
      <goals>
          <goal>copy</goal>
      </goals>
      <configuration>
        <artifactItems>
          <artifactItem>
            <groupId>${project.groupId}</groupId>
            <artifactId>${project.artifactId}</artifactId>
            <version>${project.version}</version>
            <type>${project.packaging}</type>
          </artifactItem>
        </artifactItems>
        <outputDirectory>\\someserver\somedirectory</outputDirectory>
        <stripVersion>true</stripVersion>                    
      </configuration>
    </execution>                        
  </executions>
</plugin>

It also takes windows path like \resource.

show/hide this revision's text 1

Actually I have found a different way: Dependency plugin!

 <plugin>
    			<groupId>org.apache.maven.plugins</groupId>
    			<artifactId>maven-dependency-plugin</artifactId>
    			<executions>
    				<execution>
    					<id>copy-to-ebs</id>
    					<phase>deploy</phase>
    					<goals>
    						<goal>copy</goal>
    					</goals>
    					<configuration>
    						<artifactItems>
    							<artifactItem>
    								<groupId>${project.groupId}</groupId>
    								<artifactId>${project.artifactId}</artifactId>
    								<version>${project.version}</version>
    								<type>${project.packaging}</type>
    							</artifactItem>
    						</artifactItems>
    						<outputDirectory>\\someserver\somedirectory</outputDirectory>
    						<stripVersion>true</stripVersion>					
    					</configuration>
    				</execution>    					
    			</executions>
    		</plugin>

It also takes windows path like \resource.