Project

General

Profile

Download (9.92 KB) Statistics
| Branch: | Tag: | Revision:
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <groupId>biovel.drf</groupId>
5
  <artifactId>drf-workflow</artifactId>
6
  <packaging>jar</packaging>
7
  <version>1.0.6-SNAPSHOT</version>
8
  <name>drf-workflow</name>
9
  <url>http://maven.apache.org</url>
10
  <repositories>
11
    <repository>
12
      <id>gbif-all</id>
13
      <url>http://repository.gbif.org/content/groups/gbif</url>
14
    </repository>
15
    <repository>
16
      <id>onejar-maven-plugin.googlecode.com</id>
17
      <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
18
    </repository>
19
  </repositories>
20

    
21
  <properties>
22
    <swagger-annotations.version>1.3.11</swagger-annotations.version>
23
    <jackson-annotations.version>2.2.3</jackson-annotations.version>
24
    <apache.jena.version>3.0.0</apache.jena.version>
25
  </properties>
26

    
27
  <dependencies>
28
  <!-- 
29
    <dependency>
30
      <groupId>com.google.inject</groupId>
31
      <artifactId>guice</artifactId>
32
      <version>4.0</version>
33
    </dependency>
34
   -->
35
    <dependency>
36
      <groupId>net.sf.opencsv</groupId>
37
      <artifactId>opencsv</artifactId>
38
      <version>2.3</version>
39
    </dependency>
40
    <dependency>
41
      <groupId>com.fasterxml.jackson.module</groupId>
42
      <artifactId>jackson-module-jaxb-annotations</artifactId>
43
      <version>2.0.5</version>
44
    </dependency>
45
    <dependency>
46
      <groupId>com.fasterxml.jackson.core</groupId>
47
      <artifactId>jackson-annotations</artifactId>
48
      <version>${jackson-annotations.version}</version>
49
    </dependency>
50
    <dependency>
51
      <groupId>com.wordnik</groupId>
52
      <artifactId>swagger-annotations</artifactId>
53
      <version>${swagger-annotations.version}</version>
54
    </dependency>
55
    <dependency>
56
      <groupId>org.gbif</groupId>
57
      <artifactId>name-parser</artifactId>
58
      <version>2.1</version>
59
    </dependency>
60
    <dependency>
61
      <groupId>junit</groupId>
62
      <artifactId>junit</artifactId>
63
      <version>4.11</version>
64
    </dependency>
65
    <dependency>
66
      <groupId>com.googlecode.json-simple</groupId>
67
      <artifactId>json-simple</artifactId>
68
      <version>1.1.1</version>
69
    </dependency>
70
    <dependency>
71
      <groupId>javax.xml.bind</groupId>
72
      <artifactId>jaxb-api</artifactId>
73
      <version>2.2.5</version>
74
    </dependency>
75
    <dependency>
76
      <groupId>com.sun.xml.bind</groupId>
77
      <artifactId>jaxb-impl</artifactId>
78
      <version>2.2.5</version>
79
    </dependency>
80
    <dependency>
81
      <groupId>axis</groupId>
82
      <artifactId>axis</artifactId>
83
      <version>1.4</version>
84
    </dependency>
85
    <dependency>
86
      <groupId>commons-discovery</groupId>
87
      <artifactId>commons-discovery</artifactId>
88
      <version>0.5</version>
89
    </dependency>
90
    <dependency>
91
      <groupId>org.apache.httpcomponents</groupId>
92
      <artifactId>httpmime</artifactId>
93
      <version>4.3.2</version>
94
    </dependency>
95
    <dependency>
96
      <groupId>org.apache.httpcomponents</groupId>
97
      <artifactId>httpclient</artifactId>
98
      <version>4.3.2</version>
99
    </dependency>
100
    <!-- ======================================================================= -->
101
    <!-- Dependencies needed for Apache Axix WSDL2Java (only during development) -->
102
    <!--
103
    <dependency>
104
    <groupId>javax.xml</groupId>
105
    <artifactId>jaxrpc-api</artifactId>
106
    <version>1.1</version>
107
    </dependency>
108
    <dependency>
109
    <groupId>javax.xml.soap</groupId>
110
    <artifactId>saaj-api</artifactId>
111
    <version>1.3.5</version>
112
    </dependency>
113
    <dependency>
114
    <groupId>wsdl4j</groupId>
115
    <artifactId>wsdl4j</artifactId>
116
    <version>1.6.3</version>
117
    </dependency>
118
    <dependency>
119
    <groupId>org.apache.geronimo.specs</groupId>
120
    <artifactId>geronimo-activation_1.1_spec</artifactId>
121
    <version>1.1</version>
122
    </dependency>
123
    -->
124
    <!-- ======================================================================= -->
125
    <dependency>
126
      <groupId>javax.mail</groupId>
127
      <artifactId>mail</artifactId>
128
      <version>1.4.7</version>
129
    </dependency>
130
    <dependency>
131
      <groupId>com.ibm.lsid</groupId>
132
      <artifactId>lsid-client</artifactId>
133
      <version>1.1.2</version>
134
    </dependency>
135
    <dependency>
136
      <groupId>org.apache.jena</groupId>
137
      <artifactId>apache-jena-libs</artifactId>
138
      <type>pom</type>
139
      <version>${apache.jena.version}</version>
140
    </dependency>
141
  </dependencies>
142

    
143
  <!-- === THIS IS ONLY NEEDED FOR DEPLOYMENT TO TAVERNA === <pluginRepositories>
144
    <pluginRepository> <id>onejar-maven-plugin.googlecode.com</id> <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
145
    </pluginRepository> </pluginRepositories> -->
146

    
147
  <build>
148
    <extensions>
149
      <extension>
150
        <groupId>org.apache.maven.wagon</groupId>
151
        <artifactId>wagon-scm</artifactId>
152
        <version>1.0-beta-6</version>
153
      </extension>
154
      <extension>
155
        <groupId>org.apache.maven.wagon</groupId>
156
        <artifactId>wagon-ssh</artifactId>
157
        <version>1.0-beta-6</version>
158
      </extension>
159
      <extension>
160
        <groupId>org.apache.maven.wagon</groupId>
161
        <artifactId>wagon-ssh-external</artifactId>
162
        <version>1.0-beta-6</version>
163
      </extension>
164
      <extension>
165
        <groupId>org.apache.maven.scm</groupId>
166
        <artifactId>maven-scm-manager-plexus</artifactId>
167
        <version>1.0</version>
168
      </extension>
169
      <extension>
170
        <groupId>org.apache.maven.scm</groupId>
171
        <artifactId>maven-scm-provider-svnexe</artifactId>
172
        <version>1.0</version>
173
      </extension>
174
      <!-- WebDAV plugin to upload snapshots -->
175
      <extension>
176
        <groupId>org.apache.maven.wagon</groupId>
177
        <artifactId>wagon-webdav</artifactId>
178
        <version>1.0-beta-2</version>
179
      </extension>
180
    </extensions>
181
    <pluginManagement>
182
      <plugins>
183
        <plugin>
184
          <groupId>org.apache.maven.plugins</groupId>
185
          <artifactId>maven-jar-plugin</artifactId>
186
          <version>2.4</version>
187
        </plugin>
188

    
189
        <plugin>
190
          <groupId>org.apache.maven.plugins</groupId>
191
          <artifactId>maven-release-plugin</artifactId>
192
          <version>2.4.2</version>
193
        </plugin>
194
      </plugins>
195
    </pluginManagement>
196
    <plugins>
197
      <!-- === THIS IS ONLY NEEDED FOR DEPLOYMENT TO TAVERNA ===
198
      <plugin>
199
        <groupId>org.apache.maven.plugins</groupId>
200
        <artifactId>maven-shade-plugin</artifactId>
201
        <executions>
202
          <execution>
203
            <phase>package</phase>
204
            <goals>
205
              <goal>shade</goal>
206
            </goals>
207
          </execution>
208
        </executions>
209
        <configuration>
210
          <finalName>${project.artifactId}-${project.version}</finalName>
211
        </configuration>
212
      </plugin>
213
      -->
214
      <plugin>
215
        <groupId>org.jvnet.jaxb2.maven2</groupId>
216
        <artifactId>maven-jaxb2-plugin</artifactId>
217
        <version>0.11.0</version>
218
        <executions>
219
          <execution>
220
            <!-- Generates Java sources from XML Schema(s) and binding file(s)
221
              using the JAXB Binding Compiler (XJC) -->
222
            <goals>
223
              <goal>generate</goal>
224
            </goals>
225
          </execution>
226
        </executions>
227
        <configuration>
228
          <schemaDirectory>src/main/resources/org/bgbm/biovel/drf/tnr</schemaDirectory>
229
          <generateDirectory>src/main/java</generateDirectory>
230
          <!-- removeOldOutput>false</removeOldOutput> -->
231
          <cleanPackageDirectories>true</cleanPackageDirectories>
232
          <extension>true</extension>
233
          <args>
234
            <arg>-Xannotate</arg>
235
          </args>
236
          <clearOutputDir>true</clearOutputDir>
237
          <plugins>
238
            <plugin>
239
              <groupId>org.jvnet.jaxb2_commons</groupId>
240
              <artifactId>jaxb2-basics-annotate</artifactId>
241
              <version>1.0.1</version>
242
            </plugin>
243
          </plugins>
244
        </configuration>
245
        <dependencies>
246
          <dependency>
247
            <groupId>com.fasterxml.jackson.core</groupId>
248
            <artifactId>jackson-annotations</artifactId>
249
            <version>${jackson-annotations.version}</version>
250
          </dependency>
251
          <dependency>
252
              <groupId>com.wordnik</groupId>
253
              <artifactId>swagger-annotations</artifactId>
254
              <version>${swagger-annotations.version}</version>
255
          </dependency>
256
        </dependencies>
257
      </plugin>
258
      <plugin>
259
        <groupId>org.codehaus.mojo</groupId>
260
        <artifactId>build-helper-maven-plugin</artifactId>
261
        <version>1.9.1</version>
262
        <executions>
263
          <execution>
264
            <id>add-source</id>
265
            <phase>generate-sources</phase>
266
            <goals>
267
              <goal>add-source</goal>
268
            </goals>
269
            <configuration>
270
              <sources>
271
                <source>src/main/generated</source>
272
              </sources>
273
            </configuration>
274
          </execution>
275
        </executions>
276
      </plugin>
277
      <plugin>
278
        <groupId>org.apache.maven.plugins</groupId>
279
        <artifactId>maven-compiler-plugin</artifactId>
280
        <version>3.1</version>
281
        <configuration>
282
          <source>1.6</source>
283
          <target>1.6</target>
284
        </configuration>
285
      </plugin>
286
      <plugin>
287
        <groupId>org.apache.maven.plugins</groupId>
288
        <artifactId>maven-source-plugin</artifactId>
289
        <version>2.4</version>
290
        <executions>
291
          <execution>
292
            <id>attach-sources</id>
293
            <goals>
294
              <goal>jar</goal>
295
            </goals>
296
          </execution>
297
        </executions>
298
      </plugin>
299

    
300
    </plugins>
301
  </build>
302
  <!-- The location of your plugin site -->
303
  <distributionManagement>
304
    <repository>
305
      <id>wp5.e-taxonomy.eu</id>
306
      <name>Edit Maven Repository</name>
307
      <url>scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo/</url>
308
      <layout>default</layout>
309
    </repository>
310
  </distributionManagement>
311
</project>
(6-6/6)