Statistics
| Revision:

gvsig-projects-pool / org.gvsig.jvmpreferences / trunk / org.gvsig.jvmpreferences.native / org.gvsig.jvmpreferences.native.mainplugin / org.gvsig.jvmpreferences.native.mainplugin.windows / pom.xml @ 9477

History | View | Annotate | Download (3.34 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
    <packaging>jar</packaging>
7
    <artifactId>org.gvsig.jvmpreferences.native.mainplugin.windows</artifactId>
8
    <name>${project.artifactId}</name>
9
    
10
    <parent>
11
        <groupId>org.gvsig</groupId>
12
        <artifactId>org.gvsig.jvmpreferences.native.mainplugin</artifactId>
13
        <version>1.0.247-SNAPSHOT</version>
14
    </parent>
15
    <properties>
16
        <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
17
    </properties> 
18

    
19
  
20
  <build>
21
    <plugins>
22
      <plugin>
23
        <groupId>org.apache.maven.plugins</groupId>
24
        <artifactId>maven-dependency-plugin</artifactId>
25
        <executions>
26
          <execution>
27
                <id>unpack</id>
28
                <phase>process-sources</phase>
29
                <goals>
30
                  <goal>unpack</goal>
31
                </goals>
32
                <configuration>
33
                  <artifactItems>
34
                    <artifactItem>
35
                            <groupId>org.gvsig</groupId>
36
                            <artifactId>org.gvsig.jvmpreferences.native.mainplugin.common</artifactId>
37
                            <type>zip</type>
38
                            <overWrite>true</overWrite>
39
                            <outputDirectory>target</outputDirectory>
40
                    </artifactItem>
41
                  </artifactItems>
42
                </configuration>
43
          </execution>
44
        </executions>
45
      </plugin>
46
    </plugins>
47
  </build>
48

    
49

    
50
    <dependencies>
51
        <dependency>
52
          <groupId>org.gvsig</groupId>
53
          <artifactId>org.gvsig.jvmpreferences.native.mainplugin.common</artifactId>
54
          <version>1.0.247-SNAPSHOT</version>
55
        </dependency>
56
        <dependency>
57
          <groupId>org.gvsig</groupId>
58
          <artifactId>org.gvsig.jvmpreferences.native.mainplugin.common</artifactId>
59
          <version>1.0.247-SNAPSHOT</version>
60
          <type>zip</type>
61
        </dependency>
62
        <dependency>
63
          <groupId>org.gvsig</groupId>
64
          <artifactId>org.gvsig.jvmpreferences.native.lib.impl.windows</artifactId>
65
          <version>1.0.247-SNAPSHOT</version>
66
        </dependency>
67
        <dependency>
68
          <groupId>org.gvsig</groupId>
69
          <artifactId>org.gvsig.jvmpreferences.native.lib.impl.common</artifactId>
70
          <version>1.0.247-SNAPSHOT</version>
71
        </dependency>
72
        <dependency>
73
          <groupId>org.gvsig</groupId>
74
          <artifactId>org.gvsig.jvmpreferences.native.lib.impl.linux</artifactId>
75
          <version>1.0.247-SNAPSHOT</version>
76
        </dependency>
77
        <dependency>
78
          <groupId>org.gvsig</groupId>
79
          <artifactId>org.gvsig.jvmpreferences.native.lib.api</artifactId>
80
          <version>1.0.247-SNAPSHOT</version>
81
        </dependency>
82
    </dependencies>
83

    
84
  <profiles>
85
    <profile>
86
      <id>gvsig-plugin-install-nativepreferences-windows</id>
87
      <activation>
88
         <os>
89
             <family>windows</family>
90
         </os>
91
      </activation>
92
            <properties>
93
              <gvsig.install.plugin>true</gvsig.install.plugin>
94
            </properties>
95
    </profile>
96
  </profiles>
97

    
98
</project>
99