Statistics
| Revision:

gvsig-raster / org.gvsig.raster / trunk / org.gvsig.raster / org.gvsig.raster.app / org.gvsig.raster.app.fedora.x86 / pom.xml @ 2861

History | View | Annotate | Download (2.88 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
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.raster.app.fedora.x86</artifactId>
5
  <packaging>jar</packaging>
6
   
7
         <parent>
8
                <groupId>org.gvsig</groupId>
9
                <artifactId>org.gvsig.raster.app</artifactId>
10
    <version>2.2.4-SNAPSHOT</version>
11
        </parent>
12

    
13
  <properties>
14
    <gvsig.package.info.operatingSystem>fedora</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
16
    
17
    <native.classifier>fedora11-i586-dynamic</native.classifier>
18
  </properties>
19

    
20
  <dependencyManagement>
21
      <dependencies>
22
        <dependency>
23
          <groupId>org.gvsig</groupId>
24
          <artifactId>org.gvsig.jpotrace</artifactId>
25
          <classifier>${native.classifier}</classifier>
26
          <type>tar.gz</type>
27
          <version>2.0.0-SNAPSHOT</version>
28
        </dependency> 
29
    </dependencies>
30
  </dependencyManagement>
31

    
32
  <dependencies>
33
        <dependency>
34
          <groupId>org.gvsig</groupId>
35
          <artifactId>org.gvsig.raster.app.common</artifactId>
36
          <type>zip</type>
37
        </dependency>
38
        <dependency>
39
          <groupId>org.gvsig</groupId>
40
          <artifactId>org.gvsig.jpotrace</artifactId>
41
          <scope>compile</scope>
42
        </dependency>
43
        <dependency>
44
          <groupId>org.gvsig</groupId>
45
          <artifactId>org.gvsig.jpotrace</artifactId>
46
          <classifier>${native.classifier}</classifier>
47
          <type>tar.gz</type>
48
          <scope>runtime</scope>
49
        </dependency>
50
  </dependencies>
51

    
52
  <build>
53
    <plugins>
54
  
55
      <plugin>
56
        <groupId>org.apache.maven.plugins</groupId>
57
        <artifactId>maven-dependency-plugin</artifactId>
58
        <executions>
59
          <execution>
60
                  <id>unpack</id>
61
                <phase>process-sources</phase>
62
                <goals>
63
                  <goal>unpack</goal>
64
                </goals>
65
                <configuration>
66
                  <artifactItems>
67
                    <artifactItem>
68
                            <groupId>org.gvsig</groupId>
69
                            <artifactId>org.gvsig.raster.app.common</artifactId>
70
                            <type>zip</type>
71
                                              <overWrite>true</overWrite>
72
                                              <outputDirectory>target</outputDirectory>
73
                    </artifactItem>
74
                    <artifactItem>
75
                            <groupId>org.gvsig</groupId>
76
                <artifactId>org.gvsig.jpotrace</artifactId>
77
                            <classifier>${native.classifier}</classifier>
78
                            <type>tar.gz</type>
79
                                              <overWrite>true</overWrite>
80
                                              <outputDirectory>target/native</outputDirectory>
81
                    </artifactItem>
82
                  </artifactItems>
83
                </configuration>
84
          </execution>
85
        </executions>
86
          </plugin>
87
  
88
  
89
    </plugins>
90
  </build>
91

    
92
  
93
</project>
94