~piastucki/bzr-eclipse/embed-rewrite

« back to all changes in this revision

Viewing changes to org.kxml2/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
  <groupId>org.kxml2</groupId>
 
5
  <artifactId>org.kxml2</artifactId>
 
6
  <version>2.3.0</version>
 
7
  <packaging>eclipse-plugin</packaging>
 
8
  <dependencies>        
 
9
    <dependency>
 
10
      <groupId>kxml2</groupId>
 
11
      <artifactId>kxml2-min</artifactId>
 
12
      <version>2.3.0</version>
 
13
          <scope>compile</scope>
 
14
    </dependency>
 
15
  </dependencies>
 
16
  <build>
 
17
        <plugins>
 
18
            <plugin>
 
19
                <groupId>org.apache.maven.plugins</groupId>
 
20
                <artifactId>maven-dependency-plugin</artifactId>
 
21
                <executions>
 
22
                    <execution>
 
23
                        <id>copy-dependencies</id>
 
24
                        <phase>compile</phase>
 
25
                        <goals>
 
26
                            <goal>copy-dependencies</goal>
 
27
                        </goals>
 
28
                        <configuration>
 
29
                            <overWriteReleases>true</overWriteReleases>
 
30
                                        <overWriteSnapshots>true</overWriteSnapshots>
 
31
                                        <overWriteIfNewer>true</overWriteIfNewer>
 
32
                                                        <outputDirectory>${basedir}</outputDirectory>
 
33
                        </configuration>
 
34
                    </execution>
 
35
                </executions>
 
36
            </plugin>           
 
37
        </plugins>
 
38
  </build>
 
39
</project>