Revision 42928 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/pom.xml

View differences:

pom.xml
5 5
  <modelVersion>4.0.0</modelVersion>
6 6
  <artifactId>org.gvsig.fmap.dal.api</artifactId>
7 7
  <name>${project.artifactId}</name>
8
  <packaging>jar</packaging>    
8
  <description>Define the API of the Data Access Library.</description>
9
  <packaging>jar</packaging>
9 10
  <parent>
10 11
      <groupId>org.gvsig</groupId>
11 12
      <artifactId>org.gvsig.fmap.dal</artifactId>
12 13
      <version>2.0.148-SNAPSHOT</version>
13
  </parent>  
14
    
14
  </parent>
15

  
15 16
  <dependencies>
16 17
    <dependency>
17 18
      <groupId>org.gvsig</groupId>
......
72 73
      <scope>test</scope>
73 74
    </dependency>
74 75
  </dependencies>
76
  
77
    <build>
78
        <plugins>
75 79

  
76
  <description>Define the API of the Data Access Library.</description>
80
            <plugin>
81
                <groupId>org.apache.maven.plugins</groupId>
82
                <artifactId>maven-jar-plugin</artifactId>
83
                <executions>
84
                    <!-- Generates a jar file only with the test classes -->
85
                    <execution>
86
                        <goals>
87
                            <goal>test-jar</goal>
88
                        </goals>
89
                        <configuration>
90
                            <includes>
91
                                <include>**/**</include>
92
                            </includes>
93
                        </configuration>
94
                    </execution>
95
                </executions>
96
            </plugin>
97
        </plugins>
98
    </build>
99

  
77 100
</project>

Also available in: Unified diff