Statistics
| Revision:

gvsig-projects-pool / org.gvsig.report / trunk / org.gvsig.report.jss / org.gvsig.report.jss.app / org.gvsig.report.jss.app.mainplugin.lin.x86_64 / pom.xml @ 625

History | View | Annotate | Download (3.02 KB)

1
<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">
2
    <modelVersion>4.0.0</modelVersion>
3
    <parent>
4
        <groupId>org.gvsig</groupId>
5
        <artifactId>org.gvsig.report.jss.app</artifactId>
6
        <version>1.0.1</version>
7
    </parent>
8
    <artifactId>org.gvsig.report.jss.app.mainplugin.lin.x86_64</artifactId>
9
    <name>${project.artifactId}</name>
10
    
11
    
12
  <properties>
13
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
14
    <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
15

    
16
    <jss.version>6.5.1_1.5_1</jss.version>
17

    
18
  </properties>
19

    
20
  <dependencyManagement>
21
    <dependencies>
22
    <dependency>
23
      <groupId>org.gvsig</groupId>
24
      <artifactId>org.gvsig.report.jss.app.mainplugin.common</artifactId>
25
      <version>1.0.1</version>
26
      <type>zip</type>
27
    </dependency>        
28
      <dependency>
29
        <groupId>org.gvsig</groupId>
30
        <artifactId>jss_webservices</artifactId>
31
        <version>${jss.version}</version>
32
        <classifier>${gvsig.package.info.operatingSystem}.${gvsig.package.info.architecture}</classifier>
33
        <scope>runtime</scope>
34
        <type>tar.gz</type>
35
      </dependency>
36
    </dependencies>
37
  </dependencyManagement>
38

    
39

    
40
  <dependencies>
41
    
42
    <dependency>
43
      <groupId>org.gvsig</groupId>
44
      <artifactId>jss_webservices</artifactId>
45
      <classifier>${gvsig.package.info.operatingSystem}.${gvsig.package.info.architecture}</classifier>
46
      <scope>runtime</scope>
47
      <type>tar.gz</type>
48
    </dependency>
49

    
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.report.jss.app.mainplugin.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>jss_webservices</artifactId>
77
                  <version>${jss.version}</version>
78
                  <classifier>${gvsig.package.info.operatingSystem}.${gvsig.package.info.architecture}</classifier>
79
                  <type>tar.gz</type>
80
                  <overWrite>true</overWrite>
81
                  <outputDirectory>target/native/jss</outputDirectory>
82
                </artifactItem>
83
              </artifactItems>
84
            </configuration>
85
          </execution>
86
        </executions>
87
      </plugin>
88

    
89
    </plugins>
90
  </build>
91
    
92
</project>