There is a jar file with following structure:

/--
  |-dir1
   |-file1
   |-file2
   |-file3
  |-dir2
  |-dir3

I set filter to take files only from dir1

<includes>dir1/*</includes>

it successfully takes files only from that directory, but in target directory copied files are placed in dir1, how can remove path from files that are copied and leave there only name. So file1 will be copied to target/file1 and not to target/dir1/file1

<build>
        <finalName>${project.build.finalName}</finalName>
        <plugins>
            <plugin>
                <inherited>true</inherited>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>unpack</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>groupId</groupId>
                                    <artifactId>artifactId</artifactId>
                                    <version>version</version>
                                    <type>jar</type>
                                    <overWrite>true</overWrite>
                                    <outputDirectory>target/natives</outputDirectory>
                                    <includes>dir1/*</includes>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
link|improve this question

70% accept rate
I can't understand this. Please post the pom config you are using. – bmargulies Oct 23 '11 at 16:30
@bmargulies, I use maven-dependency-plugin. I updated question with except from pom file. – misha nesterenko Oct 23 '11 at 20:42
Perhaps we can solve it in a different way. Why do you want to do that? – orien Nov 18 '11 at 20:49
@orien, I have a defined structure of a jar file which I have to conform to, that is why I want to change tree structure – misha nesterenko Nov 19 '11 at 15:36
feedback

1 Answer

I don't know a way to do what you want. If I had your problem, I'd use the antrun plugin to rearrange, or I'd build a different artifact to pull from.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.