Author: doogie
Date: Fri Apr 24 18:03:10 2015
New Revision: 1675914
URL: http://svn.apache.org/r1675914
Log:
Add a pom.xml to framework/service/lib and framework/service.
Added:
ofbiz/branches/OFBIZ-6271/framework/service/lib/pom.xml
ofbiz/branches/OFBIZ-6271/framework/service/pom.xml
Modified:
ofbiz/branches/OFBIZ-6271/framework/pom.xml
ofbiz/branches/OFBIZ-6271/pom.xml
Modified: ofbiz/branches/OFBIZ-6271/framework/pom.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/pom.xml?rev=1675914&r1=1675913&r2=1675914&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/framework/pom.xml Fri Apr 24 18:03:10 2015
@@ -44,5 +44,7 @@ under the License.
<module>catalina/lib</module>
<module>catalina</module>
<module>security</module>
+ <module>service/lib</module>
+ <module>service</module>
</modules>
</project>
Added: ofbiz/branches/OFBIZ-6271/framework/service/lib/pom.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/service/lib/pom.xml?rev=1675914&view=auto
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/service/lib/pom.xml (added)
+++ ofbiz/branches/OFBIZ-6271/framework/service/lib/pom.xml Fri Apr 24 18:03:10
2015
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.ofbiz</groupId>
+ <artifactId>ofbiz-parent</artifactId>
+ <version>TRUNK</version>
+ <relativePath>../../../pom.xml</relativePath>
+ </parent>
+ <artifactId>ofbiz-service-lib</artifactId>
+ <packaging>pom</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>axiom</groupId>
+ <artifactId>axiom-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>axiom</groupId>
+ <artifactId>axiom-impl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-kernel</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-transport-http</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-transport-local</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>neethi</groupId>
+ <artifactId>neethi</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>XmlSchema</groupId>
+ <artifactId>XmlSchema</artifactId>
+ </dependency>
+ </dependencies>
+</project>
Added: ofbiz/branches/OFBIZ-6271/framework/service/pom.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/service/pom.xml?rev=1675914&view=auto
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/service/pom.xml (added)
+++ ofbiz/branches/OFBIZ-6271/framework/service/pom.xml Fri Apr 24 18:03:10 2015
@@ -0,0 +1,187 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.ofbiz</groupId>
+ <artifactId>ofbiz-component</artifactId>
+ <version>TRUNK</version>
+ <relativePath>../../ofbiz-component-pom.xml</relativePath>
+ </parent>
+ <artifactId>ofbiz-service</artifactId>
+
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ofbiz-start</artifactId>
+ <version>TRUNK</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ofbiz-base</artifactId>
+ <version>TRUNK</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ofbiz-entity</artifactId>
+ <version>TRUNK</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ofbiz-security</artifactId>
+ <version>TRUNK</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>axiom</groupId>
+ <artifactId>axiom-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-kernel</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-jms</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>icu4j</groupId>
+ <artifactId>icu4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>mail</groupId>
+ <artifactId>mail</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xmlrpc</groupId>
+ <artifactId>xmlrpc-client</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xmlrpc</groupId>
+ <artifactId>xmlrpc-common</artifactId>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rmic-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>rmic-process-classes</id>
+ <goals>
+ <goal>rmic</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack-LICENSE+NOTICE-rmi</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.apache.ofbiz</groupId>
+ <artifactId>ofbiz-parent</artifactId>
+ <version>TRUNK</version>
+ <type>zip</type>
+ <classifier>assembly-LICENSE+NOTICE</classifier>
+ <overWrite>true</overWrite>
+
<outputDirectory>${project.build.directory}/rmi-classes/META-INF</outputDirectory>
+ <includes>*</includes>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>rmi-copy-classes</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+
<outputDirectory>${project.build.directory}/rmi-classes</outputDirectory>
+ <resources>
+ <resource>
+ <directory>${project.build.outputDirectory}</directory>
+ <includes>
+ <include>**/GenericServiceException.class</include>
+ <include>**/GenericResultWaiter.class</include>
+ <include>**/GenericRequester.class</include>
+ <include>**/LocalDispatcher.class</include>
+ <include>**/ModelService.class</include>
+ <include>**/org/ofbiz/service/rmi/**</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>rmi-jar</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <classifier>rmi</classifier>
+
<classesDirectory>${project.build.directory}/rmi-classes</classesDirectory>
+ <outputDirectory>${component.build.dir}/rmi</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+
<exclude>**/org/ofbiz/service/test/AbstractXmlRpcTestCase.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: ofbiz/branches/OFBIZ-6271/pom.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/pom.xml?rev=1675914&r1=1675913&r2=1675914&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/pom.xml Fri Apr 24 18:03:10 2015
@@ -701,6 +701,71 @@ under the License.
<scope>system</scope>
<systemPath>${user.dir}/framework/geronimo/lib/geronimo-transaction-3.1.1.jar</systemPath>
</dependency>
+
+ <!-- framework/service/lib -->
+ <dependency>
+ <groupId>axiom</groupId>
+ <artifactId>axiom-api</artifactId>
+ <version>1.2.9</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/axiom-api-1.2.9.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>axiom</groupId>
+ <artifactId>axiom-impl</artifactId>
+ <version>1.2.9</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/axiom-impl-1.2.9.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-kernel</artifactId>
+ <version>1.5.2</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/axis2-kernel-1.5.2.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-transport-http</artifactId>
+ <version>1.5.2</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/axis2-transport-http-1.5.2.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>axis2</groupId>
+ <artifactId>axis2-transport-local</artifactId>
+ <version>1.5.2</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/axis2-transport-local-1.5.2.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/commons-httpclient-3.1.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>neethi</groupId>
+ <artifactId>neethi</artifactId>
+ <version>2.0.4</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/neethi-2.0.4.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ <version>1.6.2</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/wsdl4j-1.6.2.jar</systemPath>
+ </dependency>
+ <dependency>
+ <groupId>XmlSchema</groupId>
+ <artifactId>XmlSchema</artifactId>
+ <version>1.4.3</version>
+ <scope>system</scope>
+
<systemPath>${user.dir}/framework/service/lib/XmlSchema-1.4.3.jar</systemPath>
+ </dependency>
</dependencies>
</dependencyManagement>