Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.mkmvnproject.app / org.gvsig.mkmvnproject.app.mainplugin / pom.xml @ 40995

History | View | Annotate | Download (5.24 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
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
  <modelVersion>4.0.0</modelVersion>
5
  <artifactId>org.gvsig.mkmvnproject.app.mainplugin</artifactId>
6
  <packaging>jar</packaging>
7
  <name>Development project wizard</name>
8
  <description>
9
Utilities and gvSIG plugin to create new gvSIG projects from a template
10
  </description>
11
  <parent>
12
      <groupId>org.gvsig</groupId>
13
      <artifactId>org.gvsig.mkmvnproject.app</artifactId>
14
      <version>2.0.22</version>
15
  </parent>
16

    
17
  <dependencies>
18
    <dependency>
19
      <groupId>org.slf4j</groupId>
20
      <artifactId>slf4j-api</artifactId>
21
      <scope>provided</scope>
22
    </dependency>        
23
    <dependency>
24
      <groupId>org.apache.ant</groupId>
25
      <artifactId>ant</artifactId>
26
      <scope>provided</scope>
27
    </dependency>
28
    <dependency>
29
        <groupId>org.gvsig</groupId>
30
        <artifactId>org.gvsig.andami</artifactId>
31
        <scope>provided</scope>
32
    </dependency>
33
    <dependency>
34
        <groupId>org.gvsig</groupId>
35
        <artifactId>org.gvsig.i18n</artifactId>
36
        <scope>provided</scope>
37
    </dependency>
38

    
39

    
40
    <dependency>
41
        <groupId>org.apache.ant</groupId>
42
        <artifactId>ant-nodeps</artifactId>
43
        <scope>runtime</scope>
44
    </dependency>
45
    <dependency>
46
      <groupId>org.apache.ant</groupId>
47
      <artifactId>ant-apache-oro</artifactId>
48
      <scope>runtime</scope>
49
    </dependency>
50
    <dependency>
51
        <groupId>ant-contrib</groupId>
52
        <artifactId>ant-contrib</artifactId>
53
        <scope>runtime</scope>
54
    </dependency>
55
    <dependency>
56
        <groupId>org.apache.ant</groupId>
57
        <artifactId>ant-launcher</artifactId>
58
        <scope>runtime</scope>
59
    </dependency>
60
    <dependency>
61
        <groupId>org.tigris.antelope</groupId>
62
        <artifactId>antelopetasks</artifactId>
63
        <scope>runtime</scope>
64
    </dependency>
65
    <dependency>
66
        <groupId>com.sardak</groupId>
67
        <artifactId>antform</artifactId>
68
        <scope>runtime</scope>
69
    </dependency>
70
    <dependency>
71
      <groupId>org.tmatesoft.svnkit</groupId>
72
      <artifactId>svnkit</artifactId>
73
      <scope>runtime</scope>
74
    </dependency>
75
    <dependency>
76
        <groupId>org.tmatesoft.svnkit</groupId>
77
        <artifactId>svnkit-cli</artifactId>
78
        <scope>runtime</scope>
79
    </dependency>
80

    
81
  </dependencies>
82

    
83
    <build>
84
        <plugins>
85

    
86
          <plugin>
87
              <groupId>org.apache.maven.plugins</groupId>
88
              <artifactId>maven-antrun-plugin</artifactId>
89
              <dependencies>
90
                  <dependency>
91
                      <groupId>org.apache.ant</groupId>
92
                      <artifactId>ant-apache-oro</artifactId>
93
                      <version>1.8.1</version>
94
                  </dependency>
95
              </dependencies>
96
              <executions>
97
                  <execution>
98
                      <id>prepare-templates</id>
99
                      <phase>generate-resources</phase>
100
                      <configuration>
101
                          <tasks>
102
                              <!-- Regexp implementation to use -->
103
                              <property name="ant.regexp.regexpimpl" value="org.apache.tools.ant.util.regexp.JakartaOroRegexp" />
104
                              <property name="runtime_classpath" refid="maven.runtime.classpath" />
105
                              <ant antfile="${basedir}/src/main/ant/prepare-templates.xml" />
106
                          </tasks>
107
                      </configuration>
108
                      <goals>
109
                          <goal>run</goal>
110
                      </goals>
111
                  </execution>
112
              </executions>
113
          </plugin>
114

    
115
      </plugins>
116

    
117
        <pluginManagement>
118
                <plugins>
119
                        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
120
                        <plugin>
121
                                <groupId>org.eclipse.m2e</groupId>
122
                                <artifactId>lifecycle-mapping</artifactId>
123
                                <version>1.0.0</version>
124
                                <configuration>
125
                                        <lifecycleMappingMetadata>
126
                                                <pluginExecutions>
127
                                                        <pluginExecution>
128
                                                                <pluginExecutionFilter>
129
                                                                        <groupId>
130
                                                                                org.apache.maven.plugins
131
                                                                        </groupId>
132
                                                                        <artifactId>
133
                                                                                maven-antrun-plugin
134
                                                                        </artifactId>
135
                                                                        <versionRange>
136
                                                                                [1.7,)
137
                                                                        </versionRange>
138
                                                                        <goals>
139
                                                                                <goal>run</goal>
140
                                                                        </goals>
141
                                                                </pluginExecutionFilter>
142
                                                                <action>
143
                                                                        <ignore />
144
                                                                </action>
145
                                                        </pluginExecution>
146
                                                </pluginExecutions>
147
                                        </lifecycleMappingMetadata>
148
                                </configuration>
149
                        </plugin>
150
                </plugins>
151
        </pluginManagement>
152
    </build>
153

    
154

    
155
  <properties>
156
      <gvsig.package.info.categories>Development</gvsig.package.info.categories>
157
      <gvsig.package.info.codealias>org.gvsig.mkmvnproject</gvsig.package.info.codealias>
158
          <gvsig.package.info.official>true</gvsig.package.info.official>
159
  </properties>
160

    
161
</project>