1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+
8+ <artifactId >transaction-motan</artifactId >
9+ <groupId >com.codingapi</groupId >
10+ <version >1.0.0</version >
11+
12+ <name >transaction-motan</name >
13+
14+ <description >transaction-dubbo project for Spring Boot</description >
15+
16+
17+ <licenses >
18+ <license >
19+ <name >The Apache License, Version 2.0</name >
20+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
21+ </license >
22+ </licenses >
23+ <developers >
24+ <developer >
25+ <name >michael</name >
26+ <email >zfvip_it@163.com</email >
27+ <roles >
28+ <role >developer</role >
29+ </roles >
30+ <timezone >+8</timezone >
31+ </developer >
32+ </developers >
33+
34+
35+ <properties >
36+ <maven .compile.source>1.7</maven .compile.source>
37+ <maven .compile.target>1.7</maven .compile.target>
38+ <maven-compiler-plugin .version>3.6.0</maven-compiler-plugin .version>
39+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
40+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
41+ <java .version>1.7</java .version>
42+ <motan >0.3.1</motan >
43+ </properties >
44+
45+ <dependencies >
46+ <dependency >
47+ <groupId >com.codingapi</groupId >
48+ <artifactId >tx-client</artifactId >
49+ <version >1.0.0</version >
50+ </dependency >
51+
52+ <!-- motan config start-->
53+ <dependency >
54+ <groupId >com.weibo</groupId >
55+ <artifactId >motan-core</artifactId >
56+ <version >${motan} </version >
57+ </dependency >
58+ <dependency >
59+ <groupId >com.weibo</groupId >
60+ <artifactId >motan-transport-netty</artifactId >
61+ <version >${motan} </version >
62+ </dependency >
63+
64+ <!-- only needed for spring-based features -->
65+ <dependency >
66+ <groupId >com.weibo</groupId >
67+ <artifactId >motan-springsupport</artifactId >
68+ <version >${motan} </version >
69+ </dependency >
70+
71+ <dependency >
72+ <groupId >com.weibo</groupId >
73+ <artifactId >motan-registry-zookeeper</artifactId >
74+ <version >${motan} </version >
75+ </dependency >
76+ <!-- motan config end-->
77+ </dependencies >
78+
79+ <build >
80+ <plugins >
81+ <plugin >
82+ <groupId >org.apache.maven.plugins</groupId >
83+ <artifactId >maven-compiler-plugin</artifactId >
84+ <configuration >
85+ <source >1.7</source >
86+ <target >1.7</target >
87+ </configuration >
88+ </plugin >
89+ <plugin >
90+ <groupId >org.apache.maven.plugins</groupId >
91+ <artifactId >maven-compiler-plugin</artifactId >
92+ <version >${maven-compiler-plugin.version} </version >
93+ <configuration >
94+ <source >${maven.compile.source} </source >
95+ <target >${maven.compile.target} </target >
96+ <encoding >${project.build.sourceEncoding} </encoding >
97+ </configuration >
98+ </plugin >
99+ <plugin >
100+ <groupId >org.apache.maven.plugins</groupId >
101+ <artifactId >maven-source-plugin</artifactId >
102+ <version >2.4</version >
103+ <executions >
104+ <execution >
105+ <id >attach-sources</id >
106+ <goals >
107+ <goal >jar-no-fork</goal >
108+ </goals >
109+ </execution >
110+ </executions >
111+ </plugin >
112+ <plugin >
113+ <groupId >org.sonatype.plugins</groupId >
114+ <artifactId >nexus-staging-maven-plugin</artifactId >
115+ <version >1.6.3</version >
116+ <extensions >true</extensions >
117+ <configuration >
118+ <serverId >ossrh</serverId >
119+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
120+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
121+ </configuration >
122+ </plugin >
123+ <plugin >
124+ <groupId >org.apache.maven.plugins</groupId >
125+ <artifactId >maven-javadoc-plugin</artifactId >
126+ <version >2.10.3</version >
127+ <executions >
128+ <execution >
129+ <id >attach-javadocs</id >
130+ <goals >
131+ <goal >jar</goal >
132+ </goals >
133+ </execution >
134+ </executions >
135+ </plugin >
136+ <plugin >
137+ <groupId >org.apache.maven.plugins</groupId >
138+ <artifactId >maven-gpg-plugin</artifactId >
139+ <version >1.6</version >
140+ <executions >
141+ <execution >
142+ <id >sign-artifacts</id >
143+ <phase >verify</phase >
144+ <goals >
145+ <goal >sign</goal >
146+ </goals >
147+ </execution >
148+ </executions >
149+ </plugin >
150+ </plugins >
151+ </build >
152+
153+ </project >
0 commit comments