Statistics
| Revision:

gvsig-sldtools / org.gvsig.sld / org.gvsig.sldconverter / org.gvsig.sldconverter.lib / org.gvsig.sldconverter.lib.impl / pom.xml @ 46

History | View | Annotate | Download (2.55 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<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/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.sldconverter.lib.impl</artifactId>
5
  <packaging>jar</packaging>
6
  <name>${project.artifactId}</name>
7
  <parent>
8
    <groupId>org.gvsig</groupId>
9
    <artifactId>org.gvsig.sldconverter.lib</artifactId>
10
    <version>2.0.3-SNAPSHOT</version>
11
  </parent>
12

    
13
  <dependencies>
14
  
15
        <dependency>
16
                <groupId>org.gvsig</groupId>
17
                <artifactId>org.gvsig.sldconverter.lib.api</artifactId>
18
              <scope>compile</scope>
19
        </dependency>
20
        
21
        <dependency>
22
                <groupId>org.gvsig</groupId>
23
              <artifactId>org.gvsig.sldsupport.lib.api</artifactId>
24
              <scope>compile</scope>
25
        </dependency>
26
    <dependency>
27
      <groupId>org.gvsig</groupId>
28
      <artifactId>org.gvsig.symbology.lib.api</artifactId>
29
      <scope>compile</scope>
30
    </dependency>
31
    <dependency>
32
      <groupId>org.gvsig</groupId>
33
      <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
34
      <scope>compile</scope>
35
    </dependency>        
36
        
37
  </dependencies>
38

    
39

    
40
  <build>
41
  
42
                <resources>
43
                        <resource>
44
                                <!--
45
                                <targetPath>org/gvsig/gui/beans/resources/translations</targetPath>
46
                                <filtering>false</filtering>
47
                                -->
48
                                <directory>src/main/resources</directory>
49
                                <!--
50
                                <includes>
51
                                        <include>**/*.png</include>
52
                                        <include>**/*.png</include>
53
                                </includes>
54
                                -->
55
                        </resource>
56
                </resources>
57
  
58
  
59
    <plugins>
60

    
61
        <!-- Skip compilation tests 
62
        <plugin>
63
          <groupId>org.apache.maven.plugins</groupId>
64
          <artifactId>maven-compiler-plugin</artifactId>
65
          <executions>
66
            <execution>
67
              <id>default-testCompile</id>
68
              <phase>process-test-sources</phase>
69
              <goals>
70
                <goal>testCompile</goal>
71
              </goals>
72
              <configuration>
73
                <skip>true</skip>
74
              </configuration>
75
            </execution>
76
          </executions>
77
        </plugin>
78
        -->
79

    
80
      <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
81
      
82
      <!--
83
      <plugin>
84
        <groupId>org.apache.maven.plugins</groupId>
85
        <artifactId>maven-surefire-plugin</artifactId>
86
        <configuration>
87
          <skipTests>true</skipTests>
88
        </configuration>
89
      </plugin>
90
    -->
91

    
92
    </plugins>
93
    
94
  </build>
95
</project>
96

    
97