~piastucki/bzr-eclipse/execute-bit

« back to all changes in this revision

Viewing changes to org.vcs.bazaar.eclipse.client/pom.xml

  • Committer: Guillermo Gonzalez
  • Date: 2010-02-02 06:40:31 UTC
  • mfrom: (219 trunk)
  • mto: This revision was merged to the branch mainline in revision 223.
  • Revision ID: guillo.gonzo@gmail.com-20100202064031-r0hch2h8bq67y1sx
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
 
<project>
3
 
  <modelVersion>4.0.0</modelVersion>
4
 
  <parent>
5
 
    <artifactId>bzr-eclipse</artifactId>
6
 
    <groupId>org.vcs.bazaar.eclipse</groupId>
7
 
    <version>1.1.1-SNAPSHOT</version>
8
 
  </parent>
9
 
  <groupId>org.vcs.bazaar.eclipse</groupId>
10
 
  <artifactId>org.vcs.bazaar.eclipse.client</artifactId>
11
 
  <version>0.5.1.qualifier</version>
12
 
  <packaging>eclipse-plugin</packaging>
13
 
  <dependencies>        
14
 
    <dependency>
15
 
          <groupId>org.vcs.bazaar.client</groupId>
16
 
          <artifactId>bzr-java-lib</artifactId>
17
 
          <version>0.5.1-SNAPSHOT</version>
18
 
          <scope>compile</scope>
19
 
    </dependency>
20
 
  </dependencies>
21
 
  <build>
22
 
        <plugins>
23
 
            <plugin>
24
 
                <groupId>org.apache.maven.plugins</groupId>
25
 
                <artifactId>maven-dependency-plugin</artifactId>
26
 
                <executions>
27
 
                    <execution>
28
 
                        <id>copy-dependencies</id>
29
 
                        <phase>compile</phase>
30
 
                        <goals>
31
 
                            <goal>copy-dependencies</goal>
32
 
                        </goals>
33
 
                        <configuration>
34
 
                            <overWriteReleases>true</overWriteReleases>
35
 
                                        <overWriteSnapshots>true</overWriteSnapshots>
36
 
                                        <overWriteIfNewer>true</overWriteIfNewer>
37
 
                                                        <outputDirectory>${basedir}</outputDirectory>
38
 
                        </configuration>
39
 
                    </execution>
40
 
                </executions>
41
 
            </plugin>
42
 
        </plugins>
43
 
  </build>
44
 
</project>