Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.impl / pom.xml @ 40435

History | View | Annotate | Download (1.85 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

    
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.fmap.dal.impl</artifactId>
7
  <name>${project.artifactId}</name>
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.fmap.dal</artifactId>
11
      <version>2.0.10-SNAPSHOT</version>
12
  </parent>  
13
    
14
  <dependencies>
15
    <dependency>
16
      <groupId>org.gvsig</groupId>
17
      <artifactId>org.gvsig.tools.lib</artifactId>
18
      <scope>compile</scope>
19
    </dependency>
20
    <dependency>
21
      <groupId>org.gvsig</groupId>
22
      <artifactId>org.gvsig.fmap.dal.api</artifactId>
23
      <scope>compile</scope>
24
    </dependency>
25
    <dependency>
26
      <groupId>org.gvsig</groupId>
27
      <artifactId>org.gvsig.fmap.dal.spi</artifactId>
28
      <scope>compile</scope>
29
    </dependency>
30
    <dependency>
31
      <groupId>easymock</groupId>
32
      <artifactId>easymock</artifactId>
33
    </dependency>
34
    <dependency>
35
      <groupId>easymock</groupId>
36
      <artifactId>easymockclassextension</artifactId>
37
    </dependency>
38

    
39
  </dependencies>
40

    
41

    
42
  <build>
43
    <plugins>
44

    
45
      <plugin>
46
        <groupId>org.apache.maven.plugins</groupId>
47
        <artifactId>maven-jar-plugin</artifactId>
48
        <executions>
49
          <!-- Generates a jar file only with the test classes -->
50
          <execution>
51
            <goals>
52
              <goal>test-jar</goal>
53
            </goals>
54
            <configuration>
55
              <includes>
56
                <include>**/**</include>
57
              </includes>
58
            </configuration>
59
          </execution>
60
        </executions>
61
      </plugin>
62
    </plugins>
63
  </build>
64

    
65

    
66
</project>