| <?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 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"> |
| <parent> |
| <groupId>org.apache.shenyu</groupId> |
| <artifactId>shenyu-java-examples-motan</artifactId> |
| <version>2.7.1-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>shenyu-java-examples-motan-api</artifactId> |
| |
| <properties> |
| <motan.version>1.2.1</motan.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.weibo</groupId> |
| <artifactId>motan-core</artifactId> |
| <version>${motan.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.weibo</groupId> |
| <artifactId>motan-transport-netty4</artifactId> |
| <version>${motan.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.weibo</groupId> |
| <artifactId>motan-springsupport</artifactId> |
| <version>${motan.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.weibo</groupId> |
| <artifactId>motan-registry-zookeeper</artifactId> |
| <version>${motan.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <finalName>shenyu-java-examples-motan-api</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.10</version> |
| <executions> |
| <execution> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>${project.build.directory}/generated-sources/annotations</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.7.0</version> |
| <configuration> |
| <source>${java.version}</source> |
| <target>${java.version}</target> |
| <encoding>${project.build.sourceEncoding}</encoding> |
| <compilerArgument>-proc:none</compilerArgument> |
| </configuration> |
| <executions> |
| <execution> |
| <id>process-annotations</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| <configuration> |
| <fork>true</fork> <!-- if true, jvm options -DmotanGeneratePath=xxx maybe not work --> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |