savara SVN: r61 - in tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl: soap and 1 other directory.
by do-not-reply@jboss.org
Author: objectiser
Date: 2009-10-17 16:07:25 -0400 (Sat, 17 Oct 2009)
New Revision: 61
Modified:
tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLBinding.java
tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLGenerator.java
tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/soap/SOAPRPCWSDLBinding.java
Log:
Add SOAP binding information.
Modified: tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLBinding.java
===================================================================
--- tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLBinding.java 2009-10-17 15:08:04 UTC (rev 60)
+++ tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLBinding.java 2009-10-17 20:07:25 UTC (rev 61)
@@ -52,7 +52,7 @@
* @param defn The definition
* @param operation The operation
*/
- public void updateOperation(javax.wsdl.Definition defn, javax.wsdl.Operation operation);
+ public void updateOperation(javax.wsdl.Definition defn, javax.wsdl.BindingOperation operation);
/**
* This method adds WSDL binding information to the input.
@@ -60,7 +60,7 @@
* @param defn The definition
* @param input The input
*/
- public void updateInput(javax.wsdl.Definition defn, javax.wsdl.Input input);
+ public void updateInput(javax.wsdl.Definition defn, javax.wsdl.BindingInput input);
/**
* This method adds WSDL binding information to the output.
@@ -68,7 +68,7 @@
* @param defn The definition
* @param output The output
*/
- public void updateOutput(javax.wsdl.Definition defn, javax.wsdl.Output output);
+ public void updateOutput(javax.wsdl.Definition defn, javax.wsdl.BindingOutput output);
/**
* This method adds WSDL binding information to the fault.
@@ -76,6 +76,6 @@
* @param defn The definition
* @param fault The fault
*/
- public void updateFault(javax.wsdl.Definition defn, javax.wsdl.Fault fault);
+ public void updateFault(javax.wsdl.Definition defn, javax.wsdl.BindingFault fault);
}
Modified: tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLGenerator.java
===================================================================
--- tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLGenerator.java 2009-10-17 15:08:04 UTC (rev 60)
+++ tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/WSDLGenerator.java 2009-10-17 20:07:25 UTC (rev 61)
@@ -234,8 +234,6 @@
wsdlBinding.updateBinding(defn, ret);
}
- // TODO: Need to make binding configurable
-
if (intf.getName() != null) {
ret.setQName(new javax.xml.namespace.QName(intf.getNamespace(),
intf.getName()+SOAP_BINDING_SUFFIX));
@@ -354,12 +352,23 @@
ret = defn.createBindingOperation();
//ret.setUndefined(false);
+ // Check if WSDL operation details
+ if (wsdlBinding != null) {
+ wsdlBinding.updateOperation(defn, ret);
+ }
+
ret.setName(mep.getOperation());
javax.wsdl.Message mesg=getMessage(wsdls, contract, mep.getTypes(), wsdlBinding);
if (mesg != null) {
javax.wsdl.BindingInput input=defn.createBindingInput();
+
+ // Check if WSDL operation details
+ if (wsdlBinding != null) {
+ wsdlBinding.updateInput(defn, input);
+ }
+
ret.setBindingInput(input);
}
@@ -370,6 +379,12 @@
javax.wsdl.Message om=getMessage(wsdls, contract, rr.getResponseTypes(), wsdlBinding);
if (om != null) {
javax.wsdl.BindingOutput output=defn.createBindingOutput();
+
+ // Check if WSDL operation details
+ if (wsdlBinding != null) {
+ wsdlBinding.updateOutput(defn, output);
+ }
+
ret.setBindingOutput(output);
}
@@ -383,6 +398,11 @@
javax.wsdl.BindingFault fault=defn.createBindingFault();
fault.setName(fd.getName());
+ // Check if WSDL operation details
+ if (wsdlBinding != null) {
+ wsdlBinding.updateFault(defn, fault);
+ }
+
ret.addBindingFault(fault);
}
}
Modified: tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/soap/SOAPRPCWSDLBinding.java
===================================================================
--- tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/soap/SOAPRPCWSDLBinding.java 2009-10-17 15:08:04 UTC (rev 60)
+++ tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/src/java/org/jboss/savara/tools/wsdl/soap/SOAPRPCWSDLBinding.java 2009-10-17 20:07:25 UTC (rev 61)
@@ -17,6 +17,8 @@
*/
package org.jboss.savara.tools.wsdl.soap;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
import org.jboss.savara.tools.wsdl.WSDLBinding;
/**
@@ -25,6 +27,7 @@
*
*/
public class SOAPRPCWSDLBinding implements WSDLBinding {
+ private static Log logger = LogFactory.getLog(SOAPRPCWSDLBinding.class);
/**
* This method returns the name of the WSDL binding implementation.
@@ -51,13 +54,16 @@
* @param binding The port type
*/
public void updateBinding(javax.wsdl.Definition defn, javax.wsdl.Binding binding) {
- /*
- org.w3c.dom.Element sb=binding.getDocumentationElement().getOwnerDocument().
- createElementNS("http://schemas.xmlsoap.org/wsdl/soap/", "binding");
- sb.setAttribute("style", "rpc");
- sb.setAttribute("transport", "http://schemas.xmlsoap.org/soap/http");
- binding.getDocumentationElement().appendChild(sb);
- */
+ try {
+ javax.wsdl.extensions.soap.SOAPBinding sb=(javax.wsdl.extensions.soap.SOAPBinding)
+ defn.getExtensionRegistry().createExtension(javax.wsdl.Binding.class,
+ new javax.xml.namespace.QName("http://schemas.xmlsoap.org/wsdl/soap/", "binding"));
+ sb.setStyle("rpc");
+ sb.setTransportURI("http://schemas.xmlsoap.org/soap/http");
+ binding.addExtensibilityElement(sb);
+ } catch(Exception e) {
+ logger.error("Failed to add SOAP binding", e);
+ }
}
/**
@@ -66,8 +72,17 @@
* @param defn The definition
* @param operation The operation
*/
- public void updateOperation(javax.wsdl.Definition defn, javax.wsdl.Operation operation) {
-
+ public void updateOperation(javax.wsdl.Definition defn, javax.wsdl.BindingOperation operation) {
+ try {
+ javax.wsdl.extensions.soap.SOAPOperation soap=(javax.wsdl.extensions.soap.SOAPOperation)
+ defn.getExtensionRegistry().createExtension(javax.wsdl.BindingOperation.class,
+ new javax.xml.namespace.QName("http://schemas.xmlsoap.org/wsdl/soap/", "operation"));
+ soap.setStyle("rpc");
+ soap.setSoapActionURI("");
+ operation.addExtensibilityElement(soap);
+ } catch(Exception e) {
+ logger.error("Failed to add SOAP operation", e);
+ }
}
/**
@@ -76,8 +91,17 @@
* @param defn The definition
* @param input The input
*/
- public void updateInput(javax.wsdl.Definition defn, javax.wsdl.Input input) {
-
+ public void updateInput(javax.wsdl.Definition defn, javax.wsdl.BindingInput input) {
+ try {
+ javax.wsdl.extensions.soap.SOAPBody soap=(javax.wsdl.extensions.soap.SOAPBody)
+ defn.getExtensionRegistry().createExtension(javax.wsdl.BindingInput.class,
+ new javax.xml.namespace.QName("http://schemas.xmlsoap.org/wsdl/soap/", "body"));
+ soap.setUse("literal");
+ soap.setNamespaceURI(defn.getTargetNamespace());
+ input.addExtensibilityElement(soap);
+ } catch(Exception e) {
+ logger.error("Failed to add SOAP body to input", e);
+ }
}
/**
@@ -86,8 +110,17 @@
* @param defn The definition
* @param output The output
*/
- public void updateOutput(javax.wsdl.Definition defn, javax.wsdl.Output output) {
-
+ public void updateOutput(javax.wsdl.Definition defn, javax.wsdl.BindingOutput output) {
+ try {
+ javax.wsdl.extensions.soap.SOAPBody soap=(javax.wsdl.extensions.soap.SOAPBody)
+ defn.getExtensionRegistry().createExtension(javax.wsdl.BindingOutput.class,
+ new javax.xml.namespace.QName("http://schemas.xmlsoap.org/wsdl/soap/", "body"));
+ soap.setUse("literal");
+ soap.setNamespaceURI(defn.getTargetNamespace());
+ output.addExtensibilityElement(soap);
+ } catch(Exception e) {
+ logger.error("Failed to add SOAP body to output", e);
+ }
}
/**
@@ -96,8 +129,19 @@
* @param defn The definition
* @param fault The fault
*/
- public void updateFault(javax.wsdl.Definition defn, javax.wsdl.Fault fault) {
-
+ public void updateFault(javax.wsdl.Definition defn, javax.wsdl.BindingFault fault) {
+ try {
+ javax.wsdl.extensions.soap.SOAPFault soap=(javax.wsdl.extensions.soap.SOAPFault)
+ defn.getExtensionRegistry().createExtension(javax.wsdl.BindingFault.class,
+ new javax.xml.namespace.QName("http://schemas.xmlsoap.org/wsdl/soap/", "fault"));
+ soap.setUse("literal");
+ soap.setNamespaceURI(defn.getTargetNamespace());
+ soap.setName(fault.getName());
+
+ fault.addExtensibilityElement(soap);
+ } catch(Exception e) {
+ logger.error("Failed to add SOAP body to fault", e);
+ }
}
}
16 years, 6 months
savara SVN: r60 - trunk and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 11:08:04 -0400 (Sat, 17 Oct 2009)
New Revision: 60
Added:
runtime/trunk/distribution/
Removed:
trunk/distribution/
Log:
* moving distribution.
Copied: runtime/trunk/distribution (from rev 59, trunk/distribution)
16 years, 6 months
savara SVN: r59 - trunk and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 11:05:39 -0400 (Sat, 17 Oct 2009)
New Revision: 59
Added:
runtime/trunk/samples/
Removed:
trunk/samples/
Log:
* move samples
Copied: runtime/trunk/samples (from rev 58, trunk/samples)
16 years, 6 months
savara SVN: r58 - validator/trunk/samples/jbossesb and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 10:54:06 -0400 (Sat, 17 Oct 2009)
New Revision: 58
Added:
validator/trunk/samples/jbossesb/trailblazer/
Removed:
trunk/samples/jbossesb/trailblazer/
Log:
* moving trailblazer example.
Copied: validator/trunk/samples/jbossesb/trailblazer (from rev 57, trunk/samples/jbossesb/trailblazer)
16 years, 6 months
savara SVN: r56 - trunk and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 10:44:45 -0400 (Sat, 17 Oct 2009)
New Revision: 56
Added:
runtime/trunk/pom.xml
Removed:
trunk/pom.xml
Log:
* moving pom.xml
Copied: runtime/trunk/pom.xml (from rev 55, trunk/pom.xml)
===================================================================
--- runtime/trunk/pom.xml (rev 0)
+++ runtime/trunk/pom.xml 2009-10-17 14:44:45 UTC (rev 56)
@@ -0,0 +1,247 @@
+<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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss</groupId>
+ <artifactId>savara</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Savara</name>
+ <url>http://www.jboss.org/overlord/savara</url>
+ <description>
+ The JBoss SAVARA Project.
+ </description>
+ <scm>
+ <connection>scm:svn:https://svn.jboss.org/repos/soag/savara/trunk</connection>
+ </scm>
+ <developers>
+ <developer>
+ <name>Jeff Yu</name>
+ <id>jeff.yuchang</id>
+ <email>cyu(a)redhat.com</email>
+ <organization>Red Hat</organization>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>+8</timezone>
+ </developer>
+ <developer>
+ <name>Gary Brown</name>
+ <id>objectiser</id>
+ <email>gbrown(a)redhat.com</email>
+ <organization>Red Hat</organization>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ </developers>
+ <modules>
+ <module>runtime/jbossesb</module>
+ <module>validator/jbossesb</module>
+ <module>samples</module>
+ </modules>
+
+ <profiles>
+ <profile>
+ <id>release</id>
+ <modules>
+ <module>docs/docbook</module>
+ <module>distribution</module>
+ </modules>
+ </profile>
+ <profile>
+ <!--
+ This profile is activated when the "generate.docs" property is set,
+ as in "mvn ... -Dgenerate.docs=true ..."
+ -->
+ <id>docs</id>
+ <activation>
+ <property>
+ <name>generate.docs</name>
+ </property>
+ </activation>
+ <modules>
+ <module>docs</module>
+ </modules>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <aggregate>true</aggregate>
+ <show>public</show>
+ <title>JBoss Savara ${project.version}</title>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+ </profile>
+ </profiles>
+
+ <build>
+ <!-- This section defines the default plugin settings inherited by child projects. -->
+ <pluginManagement>
+ <plugins>
+ <!-- Fixes how test resources of a project can be used in projects dependent on it -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ <plugins>
+ <!-- Specify the compiler options and settings -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <showDeprecation>false</showDeprecation>
+ <showWarnings>false</showWarnings>
+ </configuration>
+ </plugin>
+ <!-- Produce source jars during the 'verify' phase -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*TestCase.java</include>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <properties>
+ <savara-version>1.0-SNAPSHOT</savara-version>
+ <junit.version>4.4</junit.version>
+ <rosetta.version>4.5</rosetta.version>
+ <log4j.version>1.2.14</log4j.version>
+ <mvel.version>1.3.4-java1.5</mvel.version>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${junit.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.overlord.dependencies.org.jboss.esb</groupId>
+ <artifactId>jbossesb-rosetta</artifactId>
+ <version>${rosetta.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>${log4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.mvel</groupId>
+ <artifactId>mvel</artifactId>
+ <version>${mvel.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <repositories>
+ <repository>
+ <id>jboss</id>
+ <url>http://repository.jboss.com/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+
+ <repository>
+ <id>jboss-snapshot</id>
+ <url>http://snapshots.jboss.org/maven2</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+
+ <repository>
+ <id>maven.repo</id>
+ <name>maven repository</name>
+ <url>http://repo1.maven.org/maven2</url>
+ </repository>
+
+ <repository>
+ <id>ibiblio</id>
+ <name>ibiblio repository</name>
+ <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
+ </repository>
+
+ <repository>
+ <id>codehaus</id>
+ <name>codehaus repository</name>
+ <url>http://repo1.maven.org/maven2</url>
+ </repository>
+
+ <!-- Not all dependencies are resolved when using this repository.
+ Complains about not finding appropriate version of
+ org.eclipse.equinox.app plugin. -->
+ <!-- repository>
+ <id>eclipse</id>
+ <name>eclipse repository</name>
+ <url>http://repo1.maven.org/eclipse</url>
+ </repository-->
+
+ </repositories>
+
+ <distributionManagement>
+ <repository>
+ <id>jboss</id>
+ <name>JBoss Maven Repository</name>
+ <url>file://${jboss.maven.repository}</url>
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+
+</project>
+
Deleted: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2009-10-17 14:41:44 UTC (rev 55)
+++ trunk/pom.xml 2009-10-17 14:44:45 UTC (rev 56)
@@ -1,247 +0,0 @@
-<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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss</groupId>
- <artifactId>savara</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>Savara</name>
- <url>http://www.jboss.org/overlord/savara</url>
- <description>
- The JBoss SAVARA Project.
- </description>
- <scm>
- <connection>scm:svn:https://svn.jboss.org/repos/soag/savara/trunk</connection>
- </scm>
- <developers>
- <developer>
- <name>Jeff Yu</name>
- <id>jeff.yuchang</id>
- <email>cyu(a)redhat.com</email>
- <organization>Red Hat</organization>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>+8</timezone>
- </developer>
- <developer>
- <name>Gary Brown</name>
- <id>objectiser</id>
- <email>gbrown(a)redhat.com</email>
- <organization>Red Hat</organization>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>+1</timezone>
- </developer>
- </developers>
- <modules>
- <module>runtime/jbossesb</module>
- <module>validator/jbossesb</module>
- <module>samples</module>
- </modules>
-
- <profiles>
- <profile>
- <id>release</id>
- <modules>
- <module>docs/docbook</module>
- <module>distribution</module>
- </modules>
- </profile>
- <profile>
- <!--
- This profile is activated when the "generate.docs" property is set,
- as in "mvn ... -Dgenerate.docs=true ..."
- -->
- <id>docs</id>
- <activation>
- <property>
- <name>generate.docs</name>
- </property>
- </activation>
- <modules>
- <module>docs</module>
- </modules>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <aggregate>true</aggregate>
- <show>public</show>
- <title>JBoss Savara ${project.version}</title>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
- </profile>
- </profiles>
-
- <build>
- <!-- This section defines the default plugin settings inherited by child projects. -->
- <pluginManagement>
- <plugins>
- <!-- Fixes how test resources of a project can be used in projects dependent on it -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.2</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <aggregate>true</aggregate>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <!-- Specify the compiler options and settings -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- <showDeprecation>false</showDeprecation>
- <showWarnings>false</showWarnings>
- </configuration>
- </plugin>
- <!-- Produce source jars during the 'verify' phase -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <includes>
- <include>**/*TestCase.java</include>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <properties>
- <savara-version>1.0-SNAPSHOT</savara-version>
- <junit.version>4.4</junit.version>
- <rosetta.version>4.5</rosetta.version>
- <log4j.version>1.2.14</log4j.version>
- <mvel.version>1.3.4-java1.5</mvel.version>
- </properties>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.overlord.dependencies.org.jboss.esb</groupId>
- <artifactId>jbossesb-rosetta</artifactId>
- <version>${rosetta.version}</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>${log4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mvel</groupId>
- <artifactId>mvel</artifactId>
- <version>${mvel.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
-
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-report-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
-
- <repositories>
- <repository>
- <id>jboss</id>
- <url>http://repository.jboss.com/maven2/</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
-
- <repository>
- <id>jboss-snapshot</id>
- <url>http://snapshots.jboss.org/maven2</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
-
- <repository>
- <id>maven.repo</id>
- <name>maven repository</name>
- <url>http://repo1.maven.org/maven2</url>
- </repository>
-
- <repository>
- <id>ibiblio</id>
- <name>ibiblio repository</name>
- <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
- </repository>
-
- <repository>
- <id>codehaus</id>
- <name>codehaus repository</name>
- <url>http://repo1.maven.org/maven2</url>
- </repository>
-
- <!-- Not all dependencies are resolved when using this repository.
- Complains about not finding appropriate version of
- org.eclipse.equinox.app plugin. -->
- <!-- repository>
- <id>eclipse</id>
- <name>eclipse repository</name>
- <url>http://repo1.maven.org/eclipse</url>
- </repository-->
-
- </repositories>
-
- <distributionManagement>
- <repository>
- <id>jboss</id>
- <name>JBoss Maven Repository</name>
- <url>file://${jboss.maven.repository}</url>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots</id>
- <name>JBoss Snapshot Repository</name>
- <url>dav:https://snapshots.jboss.org/maven2</url>
- </snapshotRepository>
- </distributionManagement>
-
-
-</project>
-
16 years, 6 months
savara SVN: r55 - trunk and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 10:41:44 -0400 (Sat, 17 Oct 2009)
New Revision: 55
Added:
runtime/trunk/docs/
Removed:
trunk/docs/
Log:
* moving docs
Copied: runtime/trunk/docs (from rev 54, trunk/docs)
16 years, 6 months
savara SVN: r54 - trunk/runtime and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 10:38:36 -0400 (Sat, 17 Oct 2009)
New Revision: 54
Added:
runtime/trunk/jbossesb/
Removed:
trunk/runtime/jbossesb/
Log:
* moving runtime
Copied: runtime/trunk/jbossesb (from rev 53, trunk/runtime/jbossesb)
16 years, 6 months
savara SVN: r53 - validator/trunk and 1 other directory.
by do-not-reply@jboss.org
Author: jeff.yuchang
Date: 2009-10-17 08:02:08 -0400 (Sat, 17 Oct 2009)
New Revision: 53
Added:
validator/trunk/jbossesb/
Removed:
trunk/validator/jbossesb/
Log:
* move the validator module.
Copied: validator/trunk/jbossesb (from rev 52, trunk/validator/jbossesb)
16 years, 6 months
savara SVN: r52 - in tools/eclipse/trunk/plugins: org.jboss.savara.tools.wsdl.tests and 1 other directory.
by do-not-reply@jboss.org
Author: objectiser
Date: 2009-10-16 19:38:46 -0400 (Fri, 16 Oct 2009)
New Revision: 52
Modified:
tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl.tests/
tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl/
Log:
Property changes on: tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl
___________________________________________________________________
Name: svn:ignore
+ classes
Property changes on: tools/eclipse/trunk/plugins/org.jboss.savara.tools.wsdl.tests
___________________________________________________________________
Name: svn:ignore
+ classes
16 years, 6 months