a/pom.xml b/pom.xml
...
...
3
    <modelVersion>4.0.0</modelVersion>
3
    <modelVersion>4.0.0</modelVersion>
4
    <groupId>net.timbusproject</groupId>
4
    <groupId>net.timbusproject</groupId>
5
    <artifactId>tavernaextractor</artifactId>
5
    <artifactId>tavernaextractor</artifactId>
6
    <packaging>${packaging.type}</packaging>
6
    <packaging>${packaging.type}</packaging>
7
    <name>TavernaExtractor</name>
7
    <name>TavernaExtractor</name>
8
    <version>1.0</version>
8
    <version>1.1</version>
9
10
    <organization>
11
        <name>SBA Research gGmbH</name>
12
        <url>http://www.sba-research.org/</url>
13
    </organization>
14
15
    <developers>
16
        <developer>
17
            <id>munterberger</id>
18
            <name>marco unterberger</name>
19
            <email>munterberger@sba-research.org</email>
20
        </developer>
21
    </developers>
9
22
10
    <properties>
23
    <properties>
11
       <!--<osgi.scope></osgi.scope> --><!-- set in OSGi profile -->
24
       <!--<osgi.scope></osgi.scope> --><!-- set in OSGi profile -->
12
        <compiler.version>1.7</compiler.version>
25
        <compiler.version>1.7</compiler.version>
26
        <timbus.extractor.version>0.0.2-RELEASE</timbus.extractor.version>
13
        <springframework.version>3.2.3.RELEASE</springframework.version>
27
        <springframework.version>3.2.3.RELEASE</springframework.version>
14
        <osgi.version>4.3.1</osgi.version>
28
        <osgi.version>4.3.1</osgi.version>
15
        <jettison.version>1.3.4</jettison.version>
29
        <jettison.version>1.3.4</jettison.version>
16
        <jcraft.version>0.1.41</jcraft.version>
30
        <jcraft.version>0.1.41</jcraft.version>
31
        <jaxen.version>1.1.6</jaxen.version>
17
        <maven-bundle-plugin.version>2.4.0</maven-bundle-plugin.version>
32
        <maven-bundle-plugin.version>2.4.0</maven-bundle-plugin.version>
18
        <t2.core.version>1.4</t2.core.version>
33
        <t2.core.version>1.4</t2.core.version>
19
        <t2.ui.api.version>1.4</t2.ui.api.version>
34
        <t2.ui.api.version>1.4</t2.ui.api.version>
20
        <t2.taverna-commandline.version>1.4</t2.taverna-commandline.version>
35
        <t2.taverna-commandline.version>1.4</t2.taverna-commandline.version>
21
        <t2.ui.activities.version>1.4</t2.ui.activities.version>
36
        <t2.ui.activities.version>1.4</t2.ui.activities.version>
...
...
39
54
40
        <!-- BEGIN OSGi relevant dependencies -->
55
        <!-- BEGIN OSGi relevant dependencies -->
41
        <dependency>
56
        <dependency>
42
            <groupId>net.timbusproject.extractors</groupId>
57
            <groupId>net.timbusproject.extractors</groupId>
43
            <artifactId>extractors-core</artifactId>
58
            <artifactId>extractors-core</artifactId>
44
            <version>0.0.2-RELEASE</version>
59
            <version>${timbus.extractor.version}</version>
45
            <scope>${osgi.scope}</scope>
60
            <scope>${osgi.scope}</scope>
46
        </dependency>
61
        </dependency>
47
62
48
        <dependency>
63
        <dependency>
49
            <groupId>org.osgi</groupId>
64
            <groupId>org.osgi</groupId>
...
...
61
76
62
        <dependency>
77
        <dependency>
63
            <groupId>org.codehaus.jettison</groupId>
78
            <groupId>org.codehaus.jettison</groupId>
64
            <artifactId>jettison</artifactId>
79
            <artifactId>jettison</artifactId>
65
            <version>${jettison.version}</version>
80
            <version>${jettison.version}</version>
66
            <!--<scope>${osgi.scope}</scope>-->
81
            <!--<scope>${osgi.scope}</scope>--> <!--Not provided at the moment -->
67
        </dependency>
82
        </dependency>
68
83
69
       <dependency>
84
       <dependency>
70
            <groupId>com.jcraft.jsch</groupId>
85
            <groupId>com.jcraft.jsch</groupId>
71
            <artifactId>com.springsource.com.jcraft.jsch</artifactId>
86
            <artifactId>com.springsource.com.jcraft.jsch</artifactId>
...
...
185
        </dependency>
200
        </dependency>
186
201
187
        <dependency>
202
        <dependency>
188
            <groupId>jaxen</groupId>
203
            <groupId>jaxen</groupId>
189
            <artifactId>jaxen</artifactId>
204
            <artifactId>jaxen</artifactId>
190
            <version>1.1.6</version>
205
            <version>${jaxen.version}</version>
191
        </dependency>
206
        </dependency>
192
207
193
        <dependency>
208
        <dependency>
194
            <groupId>net.sf.taverna.t2.ui-api</groupId>
209
            <groupId>net.sf.taverna.t2.ui-api</groupId>
195
            <artifactId>menu-api</artifactId>
210
            <artifactId>menu-api</artifactId>
...
...
427
                    <source>${compiler.version}</source>
442
                    <source>${compiler.version}</source>
428
                    <target>${compiler.version}</target>
443
                    <target>${compiler.version}</target>
429
                    <compilerArgument>-Xlint:all</compilerArgument>
444
                    <compilerArgument>-Xlint:all</compilerArgument>
430
                    <showWarnings>true</showWarnings>
445
                    <showWarnings>true</showWarnings>
431
                    <showDeprecation>true</showDeprecation>
446
                    <showDeprecation>true</showDeprecation>
432
                </configuration>
433
            </plugin>
434
435
            <plugin>
436
                <groupId>net.flybyte.virgo</groupId>
437
                <artifactId>virgo-maven-plugin</artifactId>
438
                <version>1.0.1-SNAPSHOT</version>
439
                <configuration>
440
                    <virgoRoot>${virgo.home}</virgoRoot>
441
                </configuration>
447
                </configuration>
442
            </plugin>
448
            </plugin>
443
449
444
        </plugins>
450
        </plugins>
445
    </build>
451
    </build>