On Wed, May 6, 2009 at 16:50, Adianto Wibisono <[email protected]> wrote:
> Thank you very much for the help :).
>
> I noticed that some components change groupId's, and there is a new
> group ui-api.
> I attached my pom.xml adjusted for components on the snapshot, i'll
> try to rebuild my plugin again, i think it should work now.

This bit also needs to be changed:

       <dependency>
                        <groupId>uk.org.mygrid.taverna.raven</groupId>
                        <artifactId>appconfig</artifactId>
                        <version>${raven.version}</version>
                </dependency>


To:

                <dependency>
                        <groupId>net.sf.taverna.t2.infrastructure</groupId>
                        <artifactId>appconfig</artifactId>
                        <version>${t2.infrastructure.version}</version>
                </dependency>


The property for this is:

<t2.infrastructure.version>1.10-SNAPSHOT</t2.infrastructure.version>


I noticed in your POM that you say:

        <!-- Axis 1.4 won't work with taverna, conflicting with
existing plugins-->
        <dependency>
            <groupId>axis</groupId>
            <artifactId>axis</artifactId>
            <version>1.3</version>
        </dependency>


I don't believe your comment is true - Axis 1.4 should work fine -
that's what the wsdl-activity is using. Since your plugin is loaded
through Raven you will in anyway not be affected by this unless you
depend on one of those activities. You only depend on stringconstant,
so you should not be affected.

However - you might also need to depend on some sibling artifacts of
axis like axis-jaxrpc:


                <dependency>
                        <groupId>axis</groupId>
                        <artifactId>axis</artifactId>
                        <version>1.4</version>
                </dependency>

                <dependency>
                        <groupId>axis</groupId>
                        <artifactId>axis-jaxrpc</artifactId>
                        <version>1.4</version>
                </dependency>
                <dependency>
                        <groupId>axis</groupId>
                        <artifactId>axis-saaj</artifactId>
                        <version>1.4</version>
                </dependency>
                <dependency>
                        <groupId>axis</groupId>
                        <artifactId>axis-wsdl4j</artifactId>
                        <version>1.5.1</version>
                </dependency>


-- 
Stian Soiland-Reyes, myGrid team
School of Computer Science
The University of Manchester

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
taverna-hackers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/taverna-hackers
Developers Guide: http://www.mygrid.org.uk/usermanual1.7/dev_guide.html
FAQ: http://www.mygrid.org.uk/wiki/Mygrid/TavernaFaq

Reply via email to