~kiss-gergely/bzr-eclipse/status-ng

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