Statistics
| Revision:

gvsig-sqlite / trunk / org.gvsig.spatialite / org.gvsig.spatialite.app / org.gvsig.spatialite.app.mainplugin / org.gvsig.spatialite.app.mainplugin.lin.x86 / pom.xml @ 430

History | View | Annotate | Download (3.7 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
  <artifactId>org.gvsig.spatialite.app.mainplugin.lin.x86</artifactId>
7
  <packaging>jar</packaging>
8
  <name>${project.artifactId}</name>
9
  <description>SpatiaLite support</description>
10

    
11
  <parent>
12
      <groupId>org.gvsig</groupId>
13
      <artifactId>org.gvsig.spatialite.app.mainplugin</artifactId>
14
      <version>1.0.74</version>
15
  </parent>
16
    
17
  <properties>
18
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
19
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
20

    
21
    <mod_spatialite.classifier>ubuntu-16.04-x86</mod_spatialite.classifier>
22
    <mod_spatialite.version>4.3.0a</mod_spatialite.version>
23
  </properties>
24

    
25
  <dependencyManagement>
26
    <dependencies>
27
      <dependency>
28
        <groupId>it.gaia-gis</groupId>
29
        <artifactId>mod_spatialite</artifactId>
30
        <version>${mod_spatialite.version}</version>
31
        <classifier>${mod_spatialite.classifier}</classifier>
32
        <scope>runtime</scope>
33
        <type>tar.gz</type>
34
      </dependency>
35
    </dependencies>
36
  </dependencyManagement>
37

    
38

    
39
  <dependencies>
40
    <dependency>
41
      <groupId>org.gvsig</groupId>
42
      <artifactId>org.gvsig.spatialite.app.mainplugin.common</artifactId>
43
      <type>zip</type>
44
    </dependency>
45
    <dependency>
46
      <groupId>it.gaia-gis</groupId>
47
      <artifactId>mod_spatialite</artifactId>
48
      <classifier>${mod_spatialite.classifier}</classifier>
49
      <scope>runtime</scope>
50
      <type>tar.gz</type>
51
    </dependency>
52
  </dependencies>
53

    
54

    
55

    
56
  <build>
57
    <plugins>
58

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

    
93
    </plugins>
94
  </build>
95

    
96

    
97
  <profiles>
98
    <profile>
99
      <id>install_plugin_for_unix_linux_x86</id>
100
      <activation>
101
        <os>
102
          <name>linux</name>
103
          <family>unix</family>
104
          <arch>x86</arch>
105
        </os>
106
      </activation>
107
      <properties>
108
        <gvsig.install.plugin>true</gvsig.install.plugin>
109
      </properties>
110
    </profile>
111
    <profile>
112
      <id>install_plugin_for_linux_x86</id>
113
      <activation>
114
        <os>
115
          <family>Linux</family>
116
          <arch>x86</arch>
117
        </os>
118
      </activation>
119
      <properties>
120
        <gvsig.install.plugin>true</gvsig.install.plugin>
121
      </properties>
122
    </profile>
123
  </profiles>
124
</project>