~bzr-eclipse/bzr-eclipse/trunk

« back to all changes in this revision

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

  • Committer: Alexander Taler ~alex-idereal
  • Date: 2013-05-19 02:17:37 UTC
  • mfrom: (271.3.1 bzr-eclipse)
  • Revision ID: alex@idereal.co.nz-20130519021737-3n0l5bnreag853ti
Merge from development branch: ~alex-idereal/bzr-eclipse/1.2.0-patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
  <artifactId>org.vcs.bazaar.eclipse.ui</artifactId>
12
12
  <version>${bzr-eclipse-version}</version>
13
13
  <packaging>eclipse-plugin</packaging>
 
14
  <dependencies>        
 
15
    <dependency>
 
16
          <groupId>org.vcs.bazaar.client</groupId>
 
17
          <artifactId>bzr-java-lib</artifactId>
 
18
          <version>1.2.0-SNAPSHOT</version>
 
19
          <scope>compile</scope>
 
20
    </dependency>
 
21
  </dependencies>
 
22
  <build>
 
23
    <plugins>
 
24
        <plugin>
 
25
            <groupId>org.apache.maven.plugins</groupId>
 
26
            <artifactId>maven-dependency-plugin</artifactId>
 
27
            <executions>
 
28
                <execution>
 
29
                    <id>copy-dependencies</id>
 
30
                    <phase>generate-sources</phase>
 
31
                    <goals>
 
32
                        <goal>copy</goal>
 
33
                    </goals>
 
34
                    <configuration>
 
35
                        <artifactItems>
 
36
                            <artifactItem>
 
37
                                <groupId>org.vcs.bazaar.client</groupId>
 
38
                                <artifactId>bzr-java-lib</artifactId>
 
39
                                <type>jar</type>
 
40
                                <overWrite>true</overWrite>
 
41
                            </artifactItem>
 
42
                        </artifactItems>
 
43
                        <overWriteReleases>false</overWriteReleases>
 
44
                        <overWriteSnapshots>false</overWriteSnapshots>
 
45
                        <overWriteIfNewer>true</overWriteIfNewer>
 
46
                        <excludeTransitive>true</excludeTransitive>
 
47
                        <outputDirectory>${basedir}</outputDirectory>
 
48
                    </configuration>
 
49
                </execution>
 
50
            </executions>
 
51
        </plugin>        
 
52
    </plugins>
 
53
  </build>
14
54
</project>