You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Da...@SunGardEBS.com on 2007/06/05 21:40:21 UTC

Another axistools-maven-plugin question

Hi Everyone,

I have one more question.  I get the following error with the 
axistools-maven-plugin admin goal.

Cause: Cannot assign configuration entry 'inputFiles' to 'class 
java.util.ArrayList' from 'deploy.wsdd', which is of type class 
java.lang.String

Does anyone know why I'm getting this error?  Here is a piece of my 
pom.xml.
 
<execution>
  <id>admin</id>
    <configuration>
      <inputFiles>{deploy.wsdd}</inputFiles>
      <isServerConfig>true</isServerConfig>
    </configuration>
    <goals>
      <goal>admin</goal>
    </goals>
</execution>

Thanks for your help,

David

Re: Another axistools-maven-plugin question

Posted by Da...@SunGardEBS.com.
Wayne,

This seem to work.  I have a different error now but one step closer

<inputFiles>
 
<inputFile>${basedir}\src\main\java\com\sungardebs\omnivision\deploy.wsdd</inputFile>
</inputFiles>

David



DavidWilliams@SunGardEBS.com 
06/05/2007 03:40 PM
Please respond to
"Maven Users List" <us...@maven.apache.org>


To
"Maven Users List" <us...@maven.apache.org>
cc

Subject
Re: Another axistools-maven-plugin question






Wayne,

Thanks for your response!!!  It parses now but thinks the inputFiles is 
null.  The debug and error lines are below. 

[DEBUG]   (f) inputFiles = [null]
[DEBUG]   (f) isServerConfig = true

[INFO] [axistools:admin {execution: admin}]
Jun 5, 2007 3:29:42 PM org.codehaus.mojo.axistools.admin.AdminWrapper 
execute
SEVERE: Error processing 'null'
java.lang.NullPointerException
        at java.io.FileInputStream.<init>(FileInputStream.java:103)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at 
org.codehaus.mojo.axistools.admin.AdminWrapper.execute(AdminWrapper.java:64)
        at 
org.codehaus.mojo.axistools.admin.DefaultAdminPlugin.execute(DefaultAdminPlugin.java:94)
        at 
org.codehaus.mojo.axistools.AdminMojo.execute(AdminMojo.java:83)
        at 
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:443)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:539)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:272)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:585)
        at 
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
        at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
        at 
org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
        at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
[INFO] 
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] 
------------------------------------------------------------------------
[INFO] error executing plugin

Here is my pom.

<execution>
                <id>admin</id>
                <configuration>
                        <inputFiles>
 
<inputFile>${src\main\java\com\sungardebs\omnivision\deploy.wsdd}</inputFile>
                </inputFiles>
                        <isServerConfig>true</isServerConfig>
                        <debug>true</debug>
                        <verbose>true</verbose>
                </configuration>
        <goals>
                <goal>admin</goal>
          </goals>
        </execution>

Thanks,

David




"Wayne Fay" <wa...@gmail.com> 
06/05/2007 03:17 PM
Please respond to
"Maven Users List" <us...@maven.apache.org>


To
"Maven Users List" <us...@maven.apache.org>
cc

Subject
Re: Another axistools-maven-plugin question






The error could certainly be better, but I think it is reasonably
clear: inputFiles wants an ArrayList, and you're giving it a String.

Try this if you've only got one item:
<inputFiles><inputFile>${deploy.wsdd}</inputFile></inputFiles>

Wayne

On 6/5/07, DavidWilliams@sungardebs.com <Da...@sungardebs.com> 
wrote:
> Hi Everyone,
>
> I have one more question.  I get the following error with the
> axistools-maven-plugin admin goal.
>
> Cause: Cannot assign configuration entry 'inputFiles' to 'class
> java.util.ArrayList' from 'deploy.wsdd', which is of type class
> java.lang.String
>
> Does anyone know why I'm getting this error?  Here is a piece of my
> pom.xml.
>
> <execution>
>   <id>admin</id>
>     <configuration>
>       <inputFiles>{deploy.wsdd}</inputFiles>
>       <isServerConfig>true</isServerConfig>
>     </configuration>
>     <goals>
>       <goal>admin</goal>
>     </goals>
> </execution>
>
> Thanks for your help,
>
> David

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


_____________________________________
CONFIDENTIALITY:  This email (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this email in error, 
please notify the sender and delete this email from your system.  Thank 
you.

_____________________________________
CONFIDENTIALITY:  This email (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this email in error, 
please notify the sender and delete this email from your system.  Thank 
you.

Re: Another axistools-maven-plugin question

Posted by Da...@SunGardEBS.com.
Wayne,

Thanks for your response!!!  It parses now but thinks the inputFiles is 
null.  The debug and error lines are below. 

[DEBUG]   (f) inputFiles = [null]
[DEBUG]   (f) isServerConfig = true

[INFO] [axistools:admin {execution: admin}]
Jun 5, 2007 3:29:42 PM org.codehaus.mojo.axistools.admin.AdminWrapper 
execute
SEVERE: Error processing 'null'
java.lang.NullPointerException
        at java.io.FileInputStream.<init>(FileInputStream.java:103)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at 
org.codehaus.mojo.axistools.admin.AdminWrapper.execute(AdminWrapper.java:64)
        at 
org.codehaus.mojo.axistools.admin.DefaultAdminPlugin.execute(DefaultAdminPlugin.java:94)
        at 
org.codehaus.mojo.axistools.AdminMojo.execute(AdminMojo.java:83)
        at 
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:443)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:539)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278)
        at 
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:272)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:585)
        at 
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
        at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
        at 
org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
        at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
[INFO] 
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] 
------------------------------------------------------------------------
[INFO] error executing plugin

Here is my pom.

<execution>
                <id>admin</id>
                <configuration>
                        <inputFiles>
 
<inputFile>${src\main\java\com\sungardebs\omnivision\deploy.wsdd}</inputFile>
                </inputFiles>
                        <isServerConfig>true</isServerConfig>
                        <debug>true</debug>
                        <verbose>true</verbose>
                </configuration>
        <goals>
                <goal>admin</goal>
          </goals>
        </execution>

Thanks,

David




"Wayne Fay" <wa...@gmail.com> 
06/05/2007 03:17 PM
Please respond to
"Maven Users List" <us...@maven.apache.org>


To
"Maven Users List" <us...@maven.apache.org>
cc

Subject
Re: Another axistools-maven-plugin question






The error could certainly be better, but I think it is reasonably
clear: inputFiles wants an ArrayList, and you're giving it a String.

Try this if you've only got one item:
<inputFiles><inputFile>${deploy.wsdd}</inputFile></inputFiles>

Wayne

On 6/5/07, DavidWilliams@sungardebs.com <Da...@sungardebs.com> 
wrote:
> Hi Everyone,
>
> I have one more question.  I get the following error with the
> axistools-maven-plugin admin goal.
>
> Cause: Cannot assign configuration entry 'inputFiles' to 'class
> java.util.ArrayList' from 'deploy.wsdd', which is of type class
> java.lang.String
>
> Does anyone know why I'm getting this error?  Here is a piece of my
> pom.xml.
>
> <execution>
>   <id>admin</id>
>     <configuration>
>       <inputFiles>{deploy.wsdd}</inputFiles>
>       <isServerConfig>true</isServerConfig>
>     </configuration>
>     <goals>
>       <goal>admin</goal>
>     </goals>
> </execution>
>
> Thanks for your help,
>
> David

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


_____________________________________
CONFIDENTIALITY:  This email (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this email in error, 
please notify the sender and delete this email from your system.  Thank 
you.

Re: Another axistools-maven-plugin question

Posted by Wayne Fay <wa...@gmail.com>.
The error could certainly be better, but I think it is reasonably
clear: inputFiles wants an ArrayList, and you're giving it a String.

Try this if you've only got one item:
<inputFiles><inputFile>${deploy.wsdd}</inputFile></inputFiles>

Wayne

On 6/5/07, DavidWilliams@sungardebs.com <Da...@sungardebs.com> wrote:
> Hi Everyone,
>
> I have one more question.  I get the following error with the
> axistools-maven-plugin admin goal.
>
> Cause: Cannot assign configuration entry 'inputFiles' to 'class
> java.util.ArrayList' from 'deploy.wsdd', which is of type class
> java.lang.String
>
> Does anyone know why I'm getting this error?  Here is a piece of my
> pom.xml.
>
> <execution>
>   <id>admin</id>
>     <configuration>
>       <inputFiles>{deploy.wsdd}</inputFiles>
>       <isServerConfig>true</isServerConfig>
>     </configuration>
>     <goals>
>       <goal>admin</goal>
>     </goals>
> </execution>
>
> Thanks for your help,
>
> David

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org