You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by dl...@apache.org on 2006/09/13 14:45:30 UTC

svn commit: r442966 - /portals/wsrp4j/trunk/commons/pom.xml

Author: dlouzan
Date: Wed Sep 13 05:45:29 2006
New Revision: 442966

URL: http://svn.apache.org/viewvc?view=rev&rev=442966
Log:
Added a task for generating sources from wsdl files.

Modified:
    portals/wsrp4j/trunk/commons/pom.xml

Modified: portals/wsrp4j/trunk/commons/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons/pom.xml?view=diff&rev=442966&r1=442965&r2=442966
==============================================================================
--- portals/wsrp4j/trunk/commons/pom.xml (original)
+++ portals/wsrp4j/trunk/commons/pom.xml Wed Sep 13 05:45:29 2006
@@ -43,7 +43,7 @@
             </includes>
         </resource>
     </resources>
-    <!--plugins>
+    <plugins>
         <plugin>
             <artifactId>maven-antrun-plugin</artifactId>
             <executions>
@@ -57,18 +57,22 @@
                                     resource="axis-tasks.properties"
                                     classpathref="maven.compile.classpath"/>
                             <axis-wsdl2java
-                                    output="target/generated-sources/wsdl"
-                                    serverSide="true"
-                                    url="src/wsdl/wsrp_service.wsdl"/>
+                                all="true"
+                                namespacemappingfile="src/wsdl/NStoPkg.properties"
+                                nowrapped="true"
+                                output="target/generated-sources/wsdl"
+                                serverside="true"
+                                testcase="true"
+                                url="src/wsdl/wsrp_service.wsdl"/>
                         </tasks>
                     </configuration>
                     <goals>
-                        <goal>wsdl2java</goal>
+                        <goal>run</goal>
                     </goals>
                 </execution>
             </executions>
         </plugin>
-    </plugins-->
+    </plugins>
   </build>
   <dependencies>
     <dependency>
@@ -87,17 +91,12 @@
       <groupId>axis</groupId>
       <version>${axis.version}</version>
     </dependency>
-    <!--dependency>
+    <dependency>
       <artifactId>axis-ant</artifactId>
       <groupId>axis</groupId>
       <version>${axis.version}</version>
       <scope>compile</scope>
-    </dependency-->
-    <!--dependency>
-      <artifactId>log4j</artifactId>
-      <groupId>log4j</groupId>
-      <version>${log4j.version}</version>
-    </dependency-->
+    </dependency>
     <dependency>
       <artifactId>junit</artifactId>
       <groupId>junit</groupId>
@@ -113,6 +112,24 @@
       <artifactId>commons-logging</artifactId>
       <groupId>commons-logging</groupId>
       <version>${commons-logging.version}</version>
-    </dependency>    
+    </dependency>
+    <dependency>
+      <artifactId>commons-discovery</artifactId>
+      <groupId>commons-discovery</groupId>
+      <version>${commons-discovery.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <artifactId>axis-wsdl4j</artifactId>
+      <groupId>axis</groupId>
+      <version>${wsdl4j.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <artifactId>mail</artifactId>
+      <groupId>javax.mail</groupId>
+      <version>${javax-mail.version}</version>
+      <scope>compile</scope>
+    </dependency>
   </dependencies>
 </project>