Standardize POM Project Names
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / BPEL4RESTLight / pom.xml
1 <?xml version="1.0"?>
2 <!--
3
4     Copyright 2016-2017 ZTE Corporation.
5
6     Licensed under the Apache License, Version 2.0 (the "License");
7     you may not use this file except in compliance with the License.
8     You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12     Unless required by applicable law or agreed to in writing, software
13     distributed under the License is distributed on an "AS IS" BASIS,
14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15     See the License for the specific language governing permissions and
16     limitations under the License.
17
18 -->
19 <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">
20         <modelVersion>4.0.0</modelVersion>
21
22         <parent>
23                 <groupId>org.openo.common-services.common-utilities.wso2bpel-ext</groupId>
24                 <artifactId>wso2bpel-core-parent</artifactId>
25                 <version>1.1.0-SNAPSHOT</version>
26         </parent>
27 <!--
28         <groupId>org.openo.common-services.common-utilities.wso2bpel-ext</groupId>
29         <version>0.0.1-SNAPSHOT</version>
30         -->
31         <artifactId>BPEL4RESTLight</artifactId>
32         <name>common-services-common-utilities/wso2bpel-ext/wso2bpel-core/BPEL4RESTLight</name>
33         
34         <packaging>jar</packaging>
35         
36         <properties>
37         <httpclient.version>4.4.1</httpclient.version>
38     </properties>
39         
40         <build>
41                 
42                 <finalName>bpel4rest</finalName>
43                 
44         <plugins>
45                         <plugin>
46                 <groupId>com.mycila</groupId>
47                 <artifactId>license-maven-plugin</artifactId>
48                 <configuration>
49                     <excludes>
50                         <excludes>**</excludes>
51                     </excludes>
52                 </configuration>
53             </plugin>
54                         
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-checkstyle-plugin</artifactId>
58                 <inherited>false</inherited>
59                 <configuration>
60                     <excludes>**</excludes>
61                 </configuration>
62             </plugin>
63                         
64         </plugins>
65     </build>
66         
67         
68         <dependencies>
69                 <dependency>
70                         <groupId>commons-codec</groupId>
71                         <artifactId>commons-codec</artifactId>
72                         <version>1.3</version>
73                         <scope>compile</scope>
74                 </dependency>
75                 <dependency>
76                         <groupId>commons-httpclient</groupId>
77                         <artifactId>commons-httpclient</artifactId>
78                         <version>3.0-rc4</version>
79                 </dependency>
80                 <dependency>
81                         <groupId>commons-logging</groupId>
82                         <artifactId>commons-logging</artifactId>
83                         <version>1.0.3</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.apache.httpcomponents</groupId>
87                         <artifactId>httpcore</artifactId>
88                         <version>${httpclient.version}</version>
89                 </dependency>
90                 <!--
91                 <dependency>
92                         <groupId>org.apache.ode</groupId>
93                         <artifactId>ode-bpel-api</artifactId>
94                         <version>1.3.5</version>
95                         <scope>system</scope>
96                         <systemPath>${project.basedir}/libs/ode-bpel-api-1.3.5-wso2v4.jar</systemPath>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.apache.ode</groupId>
100                         <artifactId>ode-bpel-obj</artifactId>
101                         <version>1.3.5</version>
102                         <scope>system</scope>
103                         <systemPath>${project.basedir}/libs/ode-bpel-obj-1.3.5-wso2v4.jar</systemPath>
104                 </dependency>
105                 <dependency>
106                         <groupId>org.apache.ode</groupId>
107                         <artifactId>ode-bpel-runtime</artifactId>
108                         <version>1.3.5</version>
109                         <scope>system</scope>
110                         <systemPath>${project.basedir}/libs/ode-bpel-runtime-1.3.5-wso2v4.jar</systemPath>
111                 </dependency>
112                 -->
113                 
114                 <dependency>
115                         <groupId>org.apache.ode</groupId>
116                         <artifactId>ode-bpel-api</artifactId>
117                         <version>1.3.5</version>
118                         
119                         <scope>system</scope>
120                         <systemPath>${project.basedir}/libs/ode-bpel-api-1.3.5-wso2v4.jar</systemPath>
121                         
122                 </dependency>
123                 <dependency>
124                         <groupId>org.apache.ode</groupId>
125                         <artifactId>ode-bpel-obj</artifactId>
126                         <version>1.3.5</version>
127                         
128                         <scope>system</scope>
129                         <systemPath>${project.basedir}/libs/ode-bpel-obj-1.3.5-wso2v4.jar</systemPath>
130                         
131                 </dependency>
132                 <dependency>
133                         <groupId>org.apache.ode</groupId>
134                         <artifactId>ode-bpel-runtime</artifactId>
135                         <version>1.3.5</version>
136                         
137                         <scope>system</scope>
138                         <systemPath>${project.basedir}/libs/ode-bpel-runtime-1.3.5-wso2v4.jar</systemPath>
139                         
140                 </dependency>
141                 
142                 <dependency>
143                         <groupId>com.googlecode.json-simple</groupId>
144                         <artifactId>json-simple</artifactId>
145                         <version>1.1.1</version>
146                 </dependency>
147         </dependencies>
148 </project>