Statistics
| Revision:

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

History | View | Annotate | Download (3.39 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.linux</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>lin</gvsig.package.info.operatingSystem>
17
    </properties>    
18

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

    
48

    
49
    <dependencies>
50
        <dependency>
51
          <groupId>org.gvsig</groupId>
52
          <artifactId>org.gvsig.jvmpreferences.native.mainplugin.common</artifactId>
53
          <version>1.0.247-SNAPSHOT</version>
54
          <type>zip</type>
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
        </dependency>
61
        <dependency>
62
          <groupId>org.gvsig</groupId>
63
          <artifactId>org.gvsig.jvmpreferences.native.lib.impl.linux</artifactId>
64
          <version>1.0.247-SNAPSHOT</version>
65
        </dependency>
66
        <dependency>
67
          <groupId>org.gvsig</groupId>
68
          <artifactId>org.gvsig.jvmpreferences.native.lib.impl.common</artifactId>
69
          <version>1.0.247-SNAPSHOT</version>
70
        </dependency>
71
        <dependency>
72
          <groupId>org.gvsig</groupId>
73
          <artifactId>org.gvsig.jvmpreferences.native.lib.api</artifactId>
74
          <version>1.0.247-SNAPSHOT</version>
75
        </dependency>
76
    </dependencies>
77

    
78
  <profiles>
79
    <profile>
80
      <id>gvsig-plugin-install-nativepreferences-linux</id>
81
      <activation>
82
         <os>
83
             <family>unix</family>
84
             <!--  It can be further specialized in the fture (for instance if we want to create a Mac profile):
85
             <name>linux</name>
86
             <arch>x86</arch> (or i386, depending on the JVM and distribution)
87
             -->
88
         </os>
89
      </activation>
90
            <properties>
91
              <gvsig.install.plugin>true</gvsig.install.plugin>
92
            </properties>
93
    </profile>
94
  </profiles>
95

    
96
</project>
97