Maven2/Axis2 help

2009-02-11 Thread Kevin Witten
I'm trying to convert to maven2 from ant builds. I have a WS in Axis2 and I add 
axis2 to the pom file.
But I can't build, because maven can't find the dependencies of axis2.

Pom file:

?xml version=1.0 encoding=UTF-8?
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;

   modelVersion4.0.0/modelVersion
   groupIdServiceTest/groupId
   artifactIdServiceTest/artifactId
   version1.0.0/version

   build
  pluginManagement
 plugins
plugin
   groupIdorg.apache.maven.plugins/groupId
   artifactIdmaven-compiler-plugin/artifactId
   configuration
  !-- Compiler version --
  source1.6/source
  target1.6/target
   /configuration
/plugin

!--
Note: Must run the following
mvn 
org.apache.axis2:axis2-wsdl2code-maven-plugin:1.4.1:wsdl2code
--
plugin
   groupIdorg.apache.axis2/groupId
   artifactIdaxis2-wsdl2code-maven-plugin/artifactId
   version1.4.1/version
   executions
  execution
 phasegenerate-sources/phase
 goals
goalwsdl2code/goal
 /goals
  /execution
   /executions
   configuration
  packageNamecom.nomadix.acs.services.acsservice/packageName
  wsdlFilesrc/main/resources/ACSService.wsdl/wsdlFile
  generateServerSidetrue/generateServerSide
  generateServicesXmltrue/generateServicesXml
  skipBuildXMLtrue/skipBuildXML
  skipWSDLtrue/skipWSDL
  
generateServerSideInterfacetrue/generateServerSideInterface
  namespaceToPackages
 
http://nomadix.com/acs/services/ns/acs=com.nomadix.acs.services.acsservice
  /namespaceToPackages
  outputDirectorysrc/main/outputDirectory
  targetSourceFolderLocationjava/targetSourceFolderLocation
  
targetResourcesFolderLocationresources/targetResourcesFolderLocation
  overWritetrue/overWrite
  unwraptrue/unwrap
  databindingNameadb/databindingName
   /configuration
/plugin
 /plugins
  /pluginManagement
   /build

   dependencies
  dependency
 groupIdorg.apache.axis2/groupId
 artifactIdaxis2/artifactId
 version1.4.1/version
  /dependency
   /dependencies

/project


Thanks in advance for the help,
Kevin

Notice● The information and attachment(s) contained in this communication are 
intended for the addressee only, and may be confidential and/or legally 
privileged.  If you have received this communication in error, please contact 
the sender immediately, and delete this communication from any computer or 
network system.  Any interception, review, printing, copying, re-transmission, 
dissemination, or other use of, or taking of any action upon this information 
by persons or entities other than the intended recipient is strictly prohibited 
by law and may subject them to criminal or civil liability.  None of the 
interTouch Group of Companies shall be liable for the improper and/or 
incomplete transmission of the information contained in this communication or 
for any delay in its receipt.


Re: Maven2/Axis2 help

2009-02-11 Thread Wayne Fay
 I'm trying to convert to maven2 from ant builds. I have a WS in Axis2 and I 
 add axis2 to the pom file.
 But I can't build, because maven can't find the dependencies of axis2.

You should probably take this up with the Axis2 plugin development
team, as it is their defect. Their pom file should include all
necessary dependencies.

Wayne

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