You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ch...@apache.org on 2006/10/26 08:14:24 UTC

svn commit: r467885 - in /webservices/axis2/branches/java/1_1/modules/tool: axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/ axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/ conf/cod...

Author: chinthaka
Date: Wed Oct 25 23:14:23 2006
New Revision: 467885

URL: http://svn.apache.org/viewvc?view=rev&rev=467885
Log:
Applying the patch in http://issues.apache.org/jira/browse/AXIS2-1507. Thanks Sandakith.


Modified:
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOptionsPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/ToolSelectionPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/WSDLFileSelectionPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties
    webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/build.properties
    webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/plugin.xml

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java Wed Oct 25 23:14:23 2006
@@ -141,10 +141,12 @@
         gd = new GridData(GridData.FILL_HORIZONTAL);
         gd.horizontalSpan = 3;
         gd.verticalSpan = 7;
-        javaClasspathList = new List(container,SWT.READ_ONLY | SWT.BORDER);
+        javaClasspathList = new List(container,SWT.READ_ONLY | SWT.BORDER| SWT.V_SCROLL);
         javaClasspathList.setLayoutData(gd);
         javaClasspathList.setItems(settings.getArray(JAVA_CLASS_PATH_ENTRIES));
         container.redraw();
+
+
         gd = new GridData(GridData.FILL_HORIZONTAL);
         Button tryLoadButton = new Button(container,SWT.PUSH);
         tryLoadButton.setLayoutData(gd);
@@ -166,9 +168,9 @@
         			}
         			
         		}else{
-        			updateStatus(null);
         			updateStatusTextField(true,CodegenWizardPlugin
 			                .getResourceString("page4.successLoading.label"));
+        			updateStatus(null);
         		}
         	}
         });
@@ -191,18 +193,17 @@
 				.setText(CodegenWizardPlugin
 						.getResourceString("page4.hint.caption"));
 		hintLabel.setLayoutData(gd);
-		hintLabel.setFont(new Font(new Device() {
-			public int internal_new_GC(GCData data) {return 0;}
-			public void internal_dispose_GC(int handle, GCData data) {}
-											},"hintFont",8,SWT.NORMAL));
+//		hintLabel.setFont(new Font(new Device() {
+//			public int internal_new_GC(GCData data) {return 0;}
+//			public void internal_dispose_GC(int handle, GCData data) {}
+//											},"hintFont",8,SWT.NORMAL));
         
         setPageComplete(false);
+        setControl(container);
         
         if (restoredFromPreviousSettings){
             handleClassNameTextChange();
         }
-        javaClasspathList.redraw();
-        setControl(container);
 
     }
 
@@ -217,13 +218,8 @@
         if (dirName != null) {
         	javaClasspathList.add(dirName);
         	updateListEntries();
-            javaClasspathList.redraw();
-            container.redraw();
         }
-        container.redraw();
         updateStatusTextField(false,"");
-        javaClasspathList.redraw();
-        container.redraw();
     }
     
     
@@ -238,8 +234,6 @@
         }
         updateListEntries();
         updateStatusTextField(false,"");
-        javaClasspathList.redraw();
-        container.redraw();
     }
     
    
@@ -256,9 +250,6 @@
         	updateListEntries();
         }
         updateStatusTextField(false,"");
-        javaClasspathList.redraw();
-        container.redraw();
-
     }
     
     private void updateStatusTextField(boolean success,String text){
@@ -270,8 +261,6 @@
     
     private void updateListEntries(){
     	settings.put(JAVA_CLASS_PATH_ENTRIES,javaClasspathList.getItems());
-        javaClasspathList.redraw();
-        container.redraw();
     }
     /**
      * 

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOptionsPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOptionsPage.java?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOptionsPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOptionsPage.java Wed Oct 25 23:14:23 2006
@@ -184,7 +184,7 @@
 			public void modifyText(ModifyEvent e) {
 				settings.put(PREF_JAVA_SERVICE_NAME,
 						serviceNameText.getText());
-				// dialogChanged();
+				dialogChanged();
 			}
 		});
 
@@ -212,5 +212,21 @@
 	public String getServiceName() {
 		return this.serviceNameText.getText();
 	}
+
+    /**
+     * Handle the dialog change event. Basically evaluates the file name and
+     * sets the error message accordingly
+     */
+    private void dialogChanged() {
+        String fileName = getServiceName();
+
+        if (fileName.length() == 0) {
+            updateStatus(CodegenWizardPlugin
+                    .getResourceString("page5.error.filemissingerror"));
+            return;
+	}
+        // update the status
+        updateStatus(null);
+    }
 
 }

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java Wed Oct 25 23:14:23 2006
@@ -207,6 +207,8 @@
 			updateStatus("Input a file name");
 		} else if (outFileName.matches("\\W")) {
 			updateStatus("Input a valid file name");
+		} else if (!(outFileName.endsWith(".wsdl") || outFileName.endsWith(".xml")) ) {
+			updateStatus("Input a valid file name , Example : services.wsdl or services.xml");
 		} else {
 			updateStatus(null);
 		}

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java Wed Oct 25 23:14:23 2006
@@ -328,10 +328,10 @@
 				.setText(CodegenWizardPlugin
 						.getResourceString("page3.hint.caption"));
 		hintLabel.setLayoutData(gd);
-		hintLabel.setFont(new Font(new Device() {
-				public int internal_new_GC(GCData data) {return 0;}
-				public void internal_dispose_GC(int handle, GCData data) {}
-												},"hintFont",8,SWT.NORMAL));
+//		hintLabel.setFont(new Font(new Device() {
+//				public int internal_new_GC(GCData data) {return 0;}
+//				public void internal_dispose_GC(int handle, GCData data) {}
+//												},"hintFont",8,SWT.NORMAL));
 		
 		disableControls();
 		
@@ -464,10 +464,13 @@
 			settings.put(PREF_CHECK_JAR_CREATION, false);
 			this.jarFileNameText.setText("");
 		}
+		if(jarFileNameLabel.equals("")){
+			updateStatus("Please enter a valid name to the jar file");
+		}
 	}
 	
 	private void disableControls(){
-		this.axisHomeLocation.setText("Unpacked Axis2 binary home Or Axis2 source Location");
+		this.axisHomeLocation.setText("Unpacked Axis2 binary home Or Axis2 source location");
 		this.axisHomeBrowseButton.setEnabled(false);
 		this.axisHomeLocation.setEnabled(false);
 		this.jarCreationButton.setSelection(false);
@@ -494,6 +497,13 @@
 		this.axisLoadLibsButton.setEnabled(true);
 		this.jarFileNameLabel.setEnabled(true);
 		this.jarFileNameText.setEnabled(true);
+		if (axisLoadLibResultsLabel.getText().equals("")){
+			updateStatus("Please enter a valid path to the Axis2 libs and then try to load the libraries using the check libs button");
+		}
+	     axisLoadLibResultsLabel.setText(CodegenWizardPlugin
+					.getResourceString("page3.loadlib.fail.caption"));
+	     Color color = getShell().getDisplay().getSystemColor(SWT.COLOR_RED);
+	     axisLoadLibResultsLabel.setBackground(color);
 	}
 	
 	private void handleAxisHomeBrowse() {
@@ -511,6 +521,9 @@
 			 axisLoadLibResultsLabel.setText(CodegenWizardPlugin
 						.getResourceString("page3.loadlib.fail.caption"));
 			 jarFileCopyOption=false;
+		     if (axisLoadLibResultsLabel.getText().equals("")){
+					updateStatus("Please enter a valid path to the Axis2 libs and then try to load the libraries using the check libs button");
+		     }
 		}else{
 			settings.put(PREF_AXIS_HOME_OUTPUT_LOCATION, axisHomeLocation.getText());
 			String axis_home = settings.get(PREF_AXIS_HOME_OUTPUT_LOCATION);

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/ToolSelectionPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/ToolSelectionPage.java?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/ToolSelectionPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/ToolSelectionPage.java Wed Oct 25 23:14:23 2006
@@ -86,10 +86,10 @@
 
         Label hintLabel = new Label(container, SWT.NULL);
         hintLabel.setText(CodegenWizardPlugin.getResourceString("page0.hint.desc"));
-        hintLabel.setFont(new Font(new Device() {
-			public int internal_new_GC(GCData data) {return 0;}
-			public void internal_dispose_GC(int handle, GCData data) {}
-											},"hintFont",8,SWT.NORMAL));
+//        hintLabel.setFont(new Font(new Device() {
+//			public int internal_new_GC(GCData data) {return 0;}
+//			public void internal_dispose_GC(int handle, GCData data) {}
+//											},"hintFont",8,SWT.NORMAL));
         ///////////////////////////////////////
         //java2WSDLRadioButton.setEnabled(false);
         //////////////////////////////////////

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/WSDLFileSelectionPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/WSDLFileSelectionPage.java?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/WSDLFileSelectionPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/WSDLFileSelectionPage.java Wed Oct 25 23:14:23 2006
@@ -108,10 +108,10 @@
         Label hintLabel = new Label(container, SWT.NULL);
         hintLabel.setText(CodegenWizardPlugin.getResourceString("page1.hint.desc"));
         hintLabel.setLayoutData(gd);
-        hintLabel.setFont(new Font(new Device() {
-			public int internal_new_GC(GCData data) {return 0;}
-			public void internal_dispose_GC(int handle, GCData data) {}
-											},"hintFont",8,SWT.NORMAL));
+//        hintLabel.setFont(new Font(new Device() {
+//			public int internal_new_GC(GCData data) {return 0;}
+//			public void internal_dispose_GC(int handle, GCData data) {}
+//											},"hintFont",6,SWT.NORMAL));
         
         setPageComplete(false);
         setControl(container);

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties Wed Oct 25 23:14:23 2006
@@ -31,7 +31,7 @@
 page1.title=WSDL selection page
 page1.desc=Please Select the WSDL file location
 #labels
-page1.fileselection.label=WSDL file Location :
+page1.fileselection.label=WSDL file location :
 page1.fileselection.browse=Browse...
 page1.hint.desc=Hint : You can select only *.wsdl/*.xml file location 
 
@@ -92,11 +92,11 @@
 page3.filesystem.desc=Select this to save the results of the codegen on local file system
 page3.addaxislib.caption=Add Axis2 libraries to the codegen result project
 page3.addaxislib.desc=Click this to Copy the Axis2 Libraries to the created project library
-page3.jarcreation.caption=Create a jar file of codegen result project and add to resulted project lib folder
+page3.jarcreation.caption=Create a jar file of codegen result project and add to resulted project lib folder (Default : CodegenResults.jar)
 page3.jarcreation.desc=Click this to create a jar file of the codegen results and put that in output location
 page3.copypluginlib.caption=Add the Axis2 codegen jars to the codegen resulted project
 page3.copypluginlib.desc=Click this to add all the Axis2 libs in to the generated project as the result of codegen
-page3.hint.caption=Hint : If you have Axis2 binary distribution or Axis source, then you can add those libs also to the\n resulted codegen project by checking the \"Add Axis2 Libraries to the codegen resulted project\"\n check box and specifying the Axis2 home. Another option you have is to compile the codegen \n result project and add it as a jar file in the lib directory of the resulted project, for that you can \n check the \"Create a jar file of codegen result project and add to resulted project lib folder\" \n checkbox and then give the jar file name that you prefer. If you are adding the codegen result \n to a eclipse project on current eclipse workspace, please make sure to refresh that particular \n eclipse project. Also if you select the options to add libs to the project, make sure to add those \n libs to the project library path.
+page3.hint.caption=Hint : If you have Axis2 binary distribution or Axis source, then you can add those libs also to the\n resulted codegen project by checking the \"Add Axis2 Libraries to the codegen resulted project\"\n check box and specifying the Axis2 home. Another option you have is to compile the codegen \n result project and add it as a jar file in the lib directory of the resulted project, for that you can \n check the \"Create a jar file of codegen result project and add to resulted project lib folder\" \n checkbox and then give the jar file name that you prefer. \n If you are adding the codegen result to a eclipse project on current eclipse workspace, \n please make sure to refresh that particular eclipse project. \n Also if you select the options to add libs to the project, make sure to add those libs to the \n project library path.
 page3.loadlib.success.caption=Axis libs loaded successfully !!
 page3.loadlib.fail.caption=Axis libs are not available!! Please verify the entered path!!
 page3.loadlib.fail.message=Axis libs are not available!! Please verify the entered path, If you point to source try maven goal create-lib !! 
@@ -119,7 +119,7 @@
 page4.tryLoad.label=Test Class Loading..
 page4.unknownError.label=Unknown error!
 page4.successLoading.label=Class file loaded successfully
-page4.hint.caption=Hint : Please give the fully qualified class name, example :com.foo.BarService\n         Then add the folder or the jar file which contains that class file. \n         Finally check whether the class file can be loaded from the plugin. \n         If the class that you are going to load contains any dependencies \n         on other axis2 libraries ( for example like axiom*.jar), Please add those \n         libraries as well and try to Load the class.
+page4.hint.caption=Hint : Please give the fully qualified class name, example :com.foo.BarService\n         Then add the folder or the jar file which contains that class file. \n         Finally check whether the class file can be loaded from the plugin. \n\n         If the class that you are going to load contains any dependencies \n         on other axis2 libraries ( for example like axiom*.jar), please add those \n         libraries as well and try to load the class.
 
 ###############################################################
 #java2wsdl options = page6
@@ -131,6 +131,7 @@
 page5.schemaTargetNs.label=Schema target namespace
 page5.schemaTargetNsPrefix.label=Schema target namespace Prefix
 page5.serviceName.label=Service Name
+page5.error.filemissingerror=Service name should be specified
 
 ###############################################################
 #java2wsdl output location - page7
@@ -138,7 +139,7 @@
 page6.title=WSDL file output location
 page6.desc=Select the location for the generated WSDL.
 ####
-page6.output.label=Output Location
+page6.output.label=Output location
 page6.outputname.label=Output File Name
 page6.workspace.caption=Browse and add the WSDL to a project on current eclipse workspace
 page6.workspace.desc=Select this to add the WSDL file under a project on current eclipse workspace

Modified: webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/build.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/build.properties?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/build.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/build.properties Wed Oct 25 23:14:23 2006
@@ -13,31 +13,22 @@
                lib/axiom-api-SNAPSHOT.jar,\
                lib/axiom-dom-SNAPSHOT.jar,\
                lib/axiom-impl-SNAPSHOT.jar,\
-               lib/axis2-rahas-SNAPSHOT.jar,\
-               lib/axis2-SNAPSHOT.jar,\
-               lib/commons-codec-1.3.jar,\
-               lib/commons-discovery-0.2.jar,\
-               lib/commons-fileupload-1.1.1.jar,\
-               lib/commons-httpclient-3.0.1.jar,\
-               lib/commons-io-1.2.jar,\
+               lib/axis2-adb-1.1-RC1.jar,\
+               lib/axis2-adb-codegen-1.1-RC1.jar,\
+               lib/axis2-codegen-1.1-RC1.jar,\
+               lib/axis2-java2wsdl-1.1-RC1.jar,\
+               lib/axis2-kernel-1.1-RC1.jar,\
                lib/commons-logging-1.1.jar,\
-               lib/jakarta-httpcore-4.0-alpha2.jar,\
-               lib/junit-3.8.2.jar,\
-               lib/log4j-1.2.13.jar,\
-               lib/mail-1.4.jar,\
-               lib/maven-itest-plugin-1.0.jar,\
+               lib/jakarta-oro-2.0.8.jar,\
+               lib/jalopy-1.0b11.jar,\
+               lib/log4j-1.2.8.jar,\
                lib/neethi-SNAPSHOT.jar,\
-               lib/opensaml-1.1.jar,\
-               lib/servletapi-2.3.jar,\
                lib/stax-api-1.0.1.jar,\
-               lib/woden-SNAPSHOT.jar,\
                lib/wsdl4j-1.6.1.jar,\
                lib/wstx-asl-3.0.1.jar,\
                lib/xbean-2.2.0.jar,\
-               lib/xml-apis-1.3.03.jar,\
                lib/XmlSchema-SNAPSHOT.jar,\
-               lib/xmlsec-1.3.0.jar,\
-               lib/xmlunit-1.0.jar
+               lib/axis2-xmlbeans-1.1-RC1.jar
 src.includes = icons/,\
                plugin.xml,\
                src/,\

Modified: webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/plugin.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/plugin.xml?view=diff&rev=467885&r1=467884&r2=467885
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/plugin.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/conf/codegen/plugin.xml Wed Oct 25 23:14:23 2006
@@ -20,127 +20,61 @@
       <library name="lib/ant-1.6.5.jar">
          <export name="*"/>
       </library>
-      <library name="lib/axiom-api-1.1.1.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/axiom-api-SNAPSHOT.jar">
          <export name="*"/>
       </library>
-      <library name="lib/axiom-dom-1.1.1.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/axiom-dom-SNAPSHOT.jar">
          <export name="*"/>
       </library>
-      <library name="lib/axiom-impl-1.1.1.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/axiom-impl-SNAPSHOT.jar">
          <export name="*"/>
       </library>
-      <library name="lib/axis2-rahas-SNAPSHOT.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/axis2-SNAPSHOT.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/commons-codec-1.3.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/commons-discovery-0.2.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/commons-fileupload-1.0.jar">
+      <library name="lib/axis2-adb-1.1-RC1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/commons-fileupload-1.1.1.jar">
+      <library name="lib/axis2-adb-codegen-1.1-RC1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/commons-httpclient-3.0.1.jar">
+      <library name="lib/axis2-codegen-1.1-RC1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/commons-httpclient-3.0.jar">
+      <library name="lib/axis2-java2wsdl-1.1-RC1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/commons-io-1.2.jar">
+      <library name="lib/axis2-kernel-1.1-RC1.jar">
          <export name="*"/>
       </library>
       <library name="lib/commons-logging-1.1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/jakarta-httpcore-4.0-alpha2.jar">
+      <library name="lib/jakarta-oro-2.0.8.jar">
          <export name="*"/>
       </library>
-      <library name="lib/junit-3.8.1.jar">
+      <library name="lib/jalopy-1.0b11.jar">
          <export name="*"/>
       </library>
-      <library name="lib/junit-3.8.2.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/log4j-1.2.13.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/mail-1.4.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/maven-itest-plugin-1.0.jar">
+      <library name="lib/log4j-1.2.8.jar">
          <export name="*"/>
       </library>
       <library name="lib/neethi-SNAPSHOT.jar">
          <export name="*"/>
       </library>
-      <library name="lib/opensaml-1.1.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/servletapi-2.3.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/stax-api-1.0.1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/stax-api-1.0.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/woden-SNAPSHOT.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/wsdl4j-1.5.2.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/wsdl4j-1.6.1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/wss4j-SNAPSHOT.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/wstx-asl-2.9.3.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/wstx-asl-3.0.1.jar">
          <export name="*"/>
       </library>
-      <library name="lib/xbean-2.1.0.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/xbean-2.2.0.jar">
          <export name="*"/>
       </library>
-      <library name="lib/xml-apis-1.3.02.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/xml-apis-1.3.03.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/XmlSchema-1.1.jar">
-         <export name="*"/>
-      </library>
       <library name="lib/XmlSchema-SNAPSHOT.jar">
          <export name="*"/>
       </library>
-      <library name="lib/xmlsec-1.3.0.jar">
-         <export name="*"/>
-      </library>
-      <library name="lib/xmlunit-1.0.jar">
+      <library name="lib/axis2-xmlbeans-1.1-RC1.jar">
          <export name="*"/>
       </library>
    </runtime>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org