|
1 |
| -<!-- |
2 |
| - Licensed to the Apache Software Foundation (ASF) under one or more |
3 |
| - contributor license agreements. See the NOTICE file distributed with |
4 |
| - this work for additional information regarding copyright ownership. |
5 |
| - The ASF licenses this file to You under the Apache License, Version 2.0 |
6 |
| - (the "License"); you may not use this file except in compliance with |
7 |
| - the License. You may obtain a copy of the License at |
8 |
| -
|
9 |
| - http://www.apache.org/licenses/LICENSE-2.0 |
10 |
| -
|
11 |
| - Unless required by applicable law or agreed to in writing, software |
12 |
| - distributed under the License is distributed on an "AS IS" BASIS, |
13 |
| - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
| - See the License for the specific language governing permissions and |
15 |
| - limitations under the License. |
16 |
| - --> |
17 |
| -<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"> |
18 |
| - <modelVersion>4.0.0</modelVersion> |
19 |
| - <parent> |
20 |
| - <groupId>org.apache.dubbo</groupId> |
21 |
| - <artifactId>dubbo-config</artifactId> |
22 |
| - <version>2.7.0-SNAPSHOT</version> |
23 |
| - </parent> |
24 |
| - <artifactId>dubbo-config-spring</artifactId> |
25 |
| - <packaging>jar</packaging> |
26 |
| - <name>${project.artifactId}</name> |
27 |
| - <description>The spring config module of dubbo project</description> |
28 |
| - <properties> |
29 |
| - <skip_maven_deploy>false</skip_maven_deploy> |
30 |
| - </properties> |
31 |
| - <dependencies> |
32 |
| - <dependency> |
33 |
| - <groupId>org.apache.dubbo</groupId> |
34 |
| - <artifactId>dubbo-config-api</artifactId> |
35 |
| - <version>${project.parent.version}</version> |
36 |
| - </dependency> |
37 |
| - <dependency> |
38 |
| - <groupId>org.springframework</groupId> |
39 |
| - <artifactId>spring-beans</artifactId> |
40 |
| - </dependency> |
41 |
| - <dependency> |
42 |
| - <groupId>org.springframework</groupId> |
43 |
| - <artifactId>spring-web</artifactId> |
44 |
| - </dependency> |
45 |
| - <dependency> |
46 |
| - <groupId>org.springframework</groupId> |
47 |
| - <artifactId>spring-context</artifactId> |
48 |
| - </dependency> |
49 |
| - <dependency> |
50 |
| - <groupId>javax.servlet</groupId> |
51 |
| - <artifactId>javax.servlet-api</artifactId> |
52 |
| - <scope>provided</scope> |
53 |
| - </dependency> |
54 |
| - <dependency> |
55 |
| - <groupId>org.apache.dubbo</groupId> |
56 |
| - <artifactId>dubbo-registry-default</artifactId> |
57 |
| - <version>${project.parent.version}</version> |
58 |
| - <scope>test</scope> |
59 |
| - </dependency> |
60 |
| - <dependency> |
61 |
| - <groupId>org.apache.dubbo</groupId> |
62 |
| - <artifactId>dubbo-monitor-default</artifactId> |
63 |
| - <version>${project.parent.version}</version> |
64 |
| - <scope>test</scope> |
65 |
| - </dependency> |
66 |
| - <dependency> |
67 |
| - <groupId>org.apache.dubbo</groupId> |
68 |
| - <artifactId>dubbo-rpc-dubbo</artifactId> |
69 |
| - <version>${project.parent.version}</version> |
70 |
| - <scope>test</scope> |
71 |
| - </dependency> |
72 |
| - <dependency> |
73 |
| - <groupId>org.apache.dubbo</groupId> |
74 |
| - <artifactId>dubbo-rpc-rmi</artifactId> |
75 |
| - <version>${project.parent.version}</version> |
76 |
| - <scope>test</scope> |
77 |
| - </dependency> |
78 |
| - <dependency> |
79 |
| - <groupId>org.apache.dubbo</groupId> |
80 |
| - <artifactId>dubbo-rpc-injvm</artifactId> |
81 |
| - <version>${project.parent.version}</version> |
82 |
| - </dependency> |
83 |
| - <dependency> |
84 |
| - <groupId>org.apache.dubbo</groupId> |
85 |
| - <artifactId>dubbo-remoting-netty4</artifactId> |
86 |
| - <version>${project.parent.version}</version> |
87 |
| - <scope>test</scope> |
88 |
| - </dependency> |
89 |
| - <dependency> |
90 |
| - <groupId>org.apache.dubbo</groupId> |
91 |
| - <artifactId>dubbo-serialization-hessian2</artifactId> |
92 |
| - <version>${project.parent.version}</version> |
93 |
| - <scope>test</scope> |
94 |
| - </dependency> |
95 |
| - <dependency> |
96 |
| - <groupId>javax.validation</groupId> |
97 |
| - <artifactId>validation-api</artifactId> |
98 |
| - <scope>test</scope> |
99 |
| - </dependency> |
100 |
| - <dependency> |
101 |
| - <groupId>org.hibernate</groupId> |
102 |
| - <artifactId>hibernate-validator</artifactId> |
103 |
| - <scope>test</scope> |
104 |
| - </dependency> |
105 |
| - <dependency> |
106 |
| - <groupId>org.glassfish</groupId> |
107 |
| - <artifactId>javax.el</artifactId> |
108 |
| - <scope>test</scope> |
109 |
| - </dependency> |
110 |
| - <dependency> |
111 |
| - <groupId>org.springframework</groupId> |
112 |
| - <artifactId>spring-tx</artifactId> |
113 |
| - <scope>test</scope> |
114 |
| - </dependency> |
115 |
| - <dependency> |
116 |
| - <groupId>org.springframework</groupId> |
117 |
| - <artifactId>spring-test</artifactId> |
118 |
| - <scope>test</scope> |
119 |
| - </dependency> |
120 |
| - <dependency> |
121 |
| - <groupId>org.apache.tomcat.embed</groupId> |
122 |
| - <artifactId>tomcat-embed-core</artifactId> |
123 |
| - <scope>test</scope> |
124 |
| - </dependency> |
125 |
| - |
126 |
| - </dependencies> |
127 |
| - <build> |
128 |
| - <plugins> |
129 |
| - <!-- upload xsd file command line |
130 |
| - mvn org.codehaus.mojo:wagon-maven-plugin:1.0-beta-3:upload-single -Dwagon.fromFile=src/main/resources/META-INF/dubbo.xsd -Dwagon.url=dav:http://code.alibabatech.com/schema/dubbo/ -Dwagon.serverId=opensesame.releases.account |
131 |
| - --> |
132 |
| - <!-- |
133 |
| - <plugin> |
134 |
| - <groupId>org.codehaus.mojo</groupId> |
135 |
| - <artifactId>wagon-maven-plugin</artifactId> |
136 |
| - <version>1.0-beta-3</version> |
137 |
| - <executions> |
138 |
| - <execution> |
139 |
| - <id>upload-schema</id> |
140 |
| - <phase>deploy</phase> |
141 |
| - <goals> |
142 |
| - <goal>upload-single</goal> |
143 |
| - </goals> |
144 |
| - <configuration> |
145 |
| - <fromFile>${basedir}/src/main/resources/META-INF/dubbo.xsd</fromFile> |
146 |
| - <url>dav:http://code.alibabatech.com/schema/dubbo/</url> |
147 |
| - <serverId>opensesame.releases.account</serverId> |
148 |
| - </configuration> |
149 |
| - </execution> |
150 |
| - </executions> |
151 |
| - </plugin> |
152 |
| - --> |
153 |
| - </plugins> |
154 |
| - </build> |
155 |
| -</project> |
| 1 | +<!-- |
| 2 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | + contributor license agreements. See the NOTICE file distributed with |
| 4 | + this work for additional information regarding copyright ownership. |
| 5 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | + (the "License"); you may not use this file except in compliance with |
| 7 | + the License. You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | + Unless required by applicable law or agreed to in writing, software |
| 12 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + See the License for the specific language governing permissions and |
| 15 | + limitations under the License. |
| 16 | + --> |
| 17 | +<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"> |
| 18 | + <modelVersion>4.0.0</modelVersion> |
| 19 | + <parent> |
| 20 | + <groupId>org.apache.dubbo</groupId> |
| 21 | + <artifactId>dubbo-config</artifactId> |
| 22 | + <version>2.7.0</version> |
| 23 | + </parent> |
| 24 | + <artifactId>dubbo-config-spring</artifactId> |
| 25 | + <packaging>jar</packaging> |
| 26 | + <name>${project.artifactId}</name> |
| 27 | + <description>The spring config module of dubbo project</description> |
| 28 | + <properties> |
| 29 | + <skip_maven_deploy>false</skip_maven_deploy> |
| 30 | + </properties> |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>org.apache.dubbo</groupId> |
| 34 | + <artifactId>dubbo-config-api</artifactId> |
| 35 | + <version>${project.parent.version}</version> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework</groupId> |
| 39 | + <artifactId>spring-beans</artifactId> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework</groupId> |
| 43 | + <artifactId>spring-web</artifactId> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework</groupId> |
| 47 | + <artifactId>spring-context</artifactId> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>javax.servlet</groupId> |
| 51 | + <artifactId>javax.servlet-api</artifactId> |
| 52 | + <scope>provided</scope> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.apache.dubbo</groupId> |
| 56 | + <artifactId>dubbo-registry-default</artifactId> |
| 57 | + <version>${project.parent.version}</version> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.apache.dubbo</groupId> |
| 62 | + <artifactId>dubbo-monitor-default</artifactId> |
| 63 | + <version>${project.parent.version}</version> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.dubbo</groupId> |
| 68 | + <artifactId>dubbo-rpc-dubbo</artifactId> |
| 69 | + <version>${project.parent.version}</version> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.apache.dubbo</groupId> |
| 74 | + <artifactId>dubbo-rpc-rmi</artifactId> |
| 75 | + <version>${project.parent.version}</version> |
| 76 | + <scope>test</scope> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.apache.dubbo</groupId> |
| 80 | + <artifactId>dubbo-rpc-injvm</artifactId> |
| 81 | + <version>${project.parent.version}</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.apache.dubbo</groupId> |
| 85 | + <artifactId>dubbo-remoting-netty4</artifactId> |
| 86 | + <version>${project.parent.version}</version> |
| 87 | + <scope>test</scope> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>org.apache.dubbo</groupId> |
| 91 | + <artifactId>dubbo-serialization-hessian2</artifactId> |
| 92 | + <version>${project.parent.version}</version> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>javax.validation</groupId> |
| 97 | + <artifactId>validation-api</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.hibernate</groupId> |
| 102 | + <artifactId>hibernate-validator</artifactId> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.glassfish</groupId> |
| 107 | + <artifactId>javax.el</artifactId> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>org.springframework</groupId> |
| 112 | + <artifactId>spring-tx</artifactId> |
| 113 | + <scope>test</scope> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.springframework</groupId> |
| 117 | + <artifactId>spring-test</artifactId> |
| 118 | + <scope>test</scope> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.apache.tomcat.embed</groupId> |
| 122 | + <artifactId>tomcat-embed-core</artifactId> |
| 123 | + <scope>test</scope> |
| 124 | + </dependency> |
| 125 | + |
| 126 | + </dependencies> |
| 127 | + <build> |
| 128 | + <plugins> |
| 129 | + <!-- upload xsd file command line |
| 130 | + mvn org.codehaus.mojo:wagon-maven-plugin:1.0-beta-3:upload-single -Dwagon.fromFile=src/main/resources/META-INF/dubbo.xsd -Dwagon.url=dav:http://code.alibabatech.com/schema/dubbo/ -Dwagon.serverId=opensesame.releases.account |
| 131 | + --> |
| 132 | + <!-- |
| 133 | + <plugin> |
| 134 | + <groupId>org.codehaus.mojo</groupId> |
| 135 | + <artifactId>wagon-maven-plugin</artifactId> |
| 136 | + <version>1.0-beta-3</version> |
| 137 | + <executions> |
| 138 | + <execution> |
| 139 | + <id>upload-schema</id> |
| 140 | + <phase>deploy</phase> |
| 141 | + <goals> |
| 142 | + <goal>upload-single</goal> |
| 143 | + </goals> |
| 144 | + <configuration> |
| 145 | + <fromFile>${basedir}/src/main/resources/META-INF/dubbo.xsd</fromFile> |
| 146 | + <url>dav:http://code.alibabatech.com/schema/dubbo/</url> |
| 147 | + <serverId>opensesame.releases.account</serverId> |
| 148 | + </configuration> |
| 149 | + </execution> |
| 150 | + </executions> |
| 151 | + </plugin> |
| 152 | + --> |
| 153 | + </plugins> |
| 154 | + </build> |
| 155 | +</project> |
0 commit comments