seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

379 line
15KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.alibaba.csp</groupId>
  6. <artifactId>sentinel-parent</artifactId>
  7. <version>1.7.2-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>${project.artifactId}</name>
  10. <description>The parent project of Sentinel</description>
  11. <url>https://github.com/alibaba/Sentinel</url>
  12. <licenses>
  13. <license>
  14. <name>Apache License, Version 2.0</name>
  15. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  16. <distribution>repo</distribution>
  17. </license>
  18. </licenses>
  19. <scm>
  20. <url>https://github.com/alibaba/Sentinel</url>
  21. <connection>scm:git:https://github.com/alibaba/Sentinel.git</connection>
  22. <developerConnection>scm:git:https://github.com/alibaba/Sentinel.git</developerConnection>
  23. </scm>
  24. <developers>
  25. <developer>
  26. <name>The Sentinel Project Contributors</name>
  27. <email>sentinel-dev@linux.alibaba.com</email>
  28. <url>https://github.com/alibaba/Sentinel</url>
  29. </developer>
  30. </developers>
  31. <organization>
  32. <name>Alibaba Group</name>
  33. <url>https://github.com/alibaba</url>
  34. </organization>
  35. <issueManagement>
  36. <system>github</system>
  37. <url>https://github.com/alibaba/Sentinel/issues</url>
  38. </issueManagement>
  39. <properties>
  40. <!-- Compile libs -->
  41. <fastjson.version>1.2.62</fastjson.version>
  42. <!-- Test libs -->
  43. <junit.version>4.12</junit.version>
  44. <mockito.version>2.21.0</mockito.version>
  45. <assertj.version>3.12.1</assertj.version>
  46. <awaitility.version>3.1.5</awaitility.version>
  47. <powermock.version>2.0.0</powermock.version>
  48. <!-- Build -->
  49. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  50. <java.source.version>1.7</java.source.version>
  51. <java.target.version>1.7</java.target.version>
  52. <java.encoding>UTF-8</java.encoding>
  53. <maven.compiler.version>3.8.0</maven.compiler.version>
  54. <maven.surefire.version>2.22.1</maven.surefire.version>
  55. <maven.source.version>3.0.1</maven.source.version>
  56. <maven.javadoc.version>3.0.1</maven.javadoc.version>
  57. <maven.deploy.version>2.8.2</maven.deploy.version>
  58. <maven.gpg.version>1.6</maven.gpg.version>
  59. <maven.jacoco.version>0.8.3</maven.jacoco.version>
  60. <maven.jar.version>3.1.0</maven.jar.version>
  61. <maven.pmd.version>3.8</maven.pmd.version>
  62. </properties>
  63. <modules>
  64. <module>sentinel-core</module>
  65. <module>sentinel-extension</module>
  66. <module>sentinel-transport</module>
  67. <module>sentinel-adapter</module>
  68. <module>sentinel-dashboard</module>
  69. <module>sentinel-demo</module>
  70. <module>sentinel-benchmark</module>
  71. <module>sentinel-cluster</module>
  72. </modules>
  73. <dependencyManagement>
  74. <dependencies>
  75. <dependency>
  76. <groupId>com.alibaba.csp</groupId>
  77. <artifactId>sentinel-core</artifactId>
  78. <version>${project.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba.csp</groupId>
  82. <artifactId>sentinel-extension</artifactId>
  83. <version>${project.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba.csp</groupId>
  87. <artifactId>sentinel-annotation-aspectj</artifactId>
  88. <version>${project.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba.csp</groupId>
  92. <artifactId>sentinel-parameter-flow-control</artifactId>
  93. <version>${project.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alibaba.csp</groupId>
  97. <artifactId>sentinel-datasource-extension</artifactId>
  98. <version>${project.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba.csp</groupId>
  102. <artifactId>sentinel-datasource-nacos</artifactId>
  103. <version>${project.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba.csp</groupId>
  107. <artifactId>sentinel-datasource-zookeeper</artifactId>
  108. <version>${project.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba.csp</groupId>
  112. <artifactId>sentinel-datasource-apollo</artifactId>
  113. <version>${project.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.alibaba.csp</groupId>
  117. <artifactId>sentinel-datasource-etcd</artifactId>
  118. <version>${project.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba.csp</groupId>
  122. <artifactId>sentinel-transport-simple-http</artifactId>
  123. <version>${project.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.alibaba.csp</groupId>
  127. <artifactId>sentinel-transport-netty-http</artifactId>
  128. <version>${project.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.alibaba.csp</groupId>
  132. <artifactId>sentinel-transport-common</artifactId>
  133. <version>${project.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.alibaba.csp</groupId>
  137. <artifactId>sentinel-cluster-common-default</artifactId>
  138. <version>${project.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.alibaba.csp</groupId>
  142. <artifactId>sentinel-adapter</artifactId>
  143. <version>${project.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>fastjson</artifactId>
  148. <version>${fastjson.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>junit</groupId>
  152. <artifactId>junit</artifactId>
  153. <version>${junit.version}</version>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.mockito</groupId>
  158. <artifactId>mockito-core</artifactId>
  159. <version>${mockito.version}</version>
  160. <scope>test</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.assertj</groupId>
  164. <artifactId>assertj-core</artifactId>
  165. <version>${assertj.version}</version>
  166. <scope>test</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.awaitility</groupId>
  170. <artifactId>awaitility</artifactId>
  171. <version>${awaitility.version}</version>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.hamcrest</groupId>
  176. <artifactId>java-hamcrest</artifactId>
  177. <version>2.0.0.0</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.powermock</groupId>
  182. <artifactId>powermock-module-junit4</artifactId>
  183. <version>${powermock.version}</version>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.powermock</groupId>
  188. <artifactId>powermock-api-mockito2</artifactId>
  189. <version>${powermock.version}</version>
  190. <scope>test</scope>
  191. </dependency>
  192. </dependencies>
  193. </dependencyManagement>
  194. <build>
  195. <plugins>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-pmd-plugin</artifactId>
  199. <version>${maven.pmd.version}</version>
  200. <configuration>
  201. <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
  202. <minimumPriority>1</minimumPriority>
  203. <excludeRoots>
  204. <excludeRoot>com/alibaba/csp/sentinel/benchmark</excludeRoot>
  205. </excludeRoots>
  206. <excludes>
  207. <exclude>**/*_jmhTest.java</exclude>
  208. </excludes>
  209. <printFailingErrors>true</printFailingErrors>
  210. <rulesets>
  211. <ruleset>rulesets/java/ali-comment.xml</ruleset>
  212. <ruleset>rulesets/java/ali-concurrent.xml</ruleset>
  213. <ruleset>rulesets/java/ali-constant.xml</ruleset>
  214. <ruleset>rulesets/java/ali-exception.xml</ruleset>
  215. <ruleset>rulesets/java/ali-flowcontrol.xml</ruleset>
  216. <ruleset>rulesets/java/ali-naming.xml</ruleset>
  217. <ruleset>rulesets/java/ali-oop.xml</ruleset>
  218. <ruleset>rulesets/java/ali-orm.xml</ruleset>
  219. <ruleset>rulesets/java/ali-other.xml</ruleset>
  220. <ruleset>rulesets/java/ali-set.xml</ruleset>
  221. </rulesets>
  222. </configuration>
  223. <executions>
  224. <execution>
  225. <phase>verify</phase>
  226. <goals>
  227. <goal>check</goal>
  228. </goals>
  229. </execution>
  230. </executions>
  231. <dependencies>
  232. <dependency>
  233. <groupId>com.alibaba.p3c</groupId>
  234. <artifactId>p3c-pmd</artifactId>
  235. <version>1.3.6</version>
  236. </dependency>
  237. </dependencies>
  238. </plugin>
  239. <plugin>
  240. <groupId>org.apache.maven.plugins</groupId>
  241. <artifactId>maven-compiler-plugin</artifactId>
  242. <version>${maven.compiler.version}</version>
  243. <configuration>
  244. <source>${java.source.version}</source>
  245. <target>${java.target.version}</target>
  246. <encoding>${java.encoding}</encoding>
  247. </configuration>
  248. </plugin>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-surefire-plugin</artifactId>
  252. <configuration>
  253. <!-- CircleCI build workaround -->
  254. <argLine>@{argLine} -Xms1024m -Xmx2048m</argLine>
  255. <useSystemClassLoader>false</useSystemClassLoader>
  256. </configuration>
  257. </plugin>
  258. <plugin>
  259. <groupId>org.jacoco</groupId>
  260. <artifactId>jacoco-maven-plugin</artifactId>
  261. <version>${maven.jacoco.version}</version>
  262. <executions>
  263. <execution>
  264. <goals>
  265. <goal>prepare-agent</goal>
  266. </goals>
  267. </execution>
  268. <execution>
  269. <id>report</id>
  270. <phase>test</phase>
  271. <goals>
  272. <goal>report</goal>
  273. </goals>
  274. </execution>
  275. </executions>
  276. </plugin>
  277. </plugins>
  278. <pluginManagement>
  279. <plugins>
  280. <plugin>
  281. <groupId>org.apache.maven.plugins</groupId>
  282. <artifactId>maven-surefire-plugin</artifactId>
  283. <version>${maven.surefire.version}</version>
  284. </plugin>
  285. <plugin>
  286. <groupId>org.apache.maven.plugins</groupId>
  287. <artifactId>maven-jar-plugin</artifactId>
  288. <version>${maven.jar.version}</version>
  289. </plugin>
  290. <plugin>
  291. <groupId>org.apache.maven.plugins</groupId>
  292. <artifactId>maven-gpg-plugin</artifactId>
  293. <version>${maven.gpg.version}</version>
  294. </plugin>
  295. </plugins>
  296. </pluginManagement>
  297. </build>
  298. <profiles>
  299. <profile>
  300. <id>oss</id>
  301. <build>
  302. <plugins>
  303. <!-- Source -->
  304. <plugin>
  305. <groupId>org.apache.maven.plugins</groupId>
  306. <artifactId>maven-source-plugin</artifactId>
  307. <version>${maven.source.version}</version>
  308. <executions>
  309. <execution>
  310. <phase>package</phase>
  311. <goals>
  312. <goal>jar-no-fork</goal>
  313. </goals>
  314. </execution>
  315. </executions>
  316. </plugin>
  317. <!-- Javadoc -->
  318. <plugin>
  319. <groupId>org.apache.maven.plugins</groupId>
  320. <artifactId>maven-javadoc-plugin</artifactId>
  321. <version>${maven.javadoc.version}</version>
  322. <executions>
  323. <execution>
  324. <phase>package</phase>
  325. <goals>
  326. <goal>jar</goal>
  327. </goals>
  328. <configuration>
  329. <locale>en_US</locale>
  330. <encoding>UTF-8</encoding>
  331. <charset>UTF-8</charset>
  332. <doclint>none</doclint>
  333. </configuration>
  334. </execution>
  335. </executions>
  336. </plugin>
  337. <!-- GPG -->
  338. <plugin>
  339. <groupId>org.apache.maven.plugins</groupId>
  340. <artifactId>maven-gpg-plugin</artifactId>
  341. <version>${maven.gpg.version}</version>
  342. <executions>
  343. <execution>
  344. <phase>verify</phase>
  345. <goals>
  346. <goal>sign</goal>
  347. </goals>
  348. </execution>
  349. </executions>
  350. </plugin>
  351. </plugins>
  352. </build>
  353. <distributionManagement>
  354. <snapshotRepository>
  355. <id>oss</id>
  356. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  357. </snapshotRepository>
  358. <repository>
  359. <id>oss</id>
  360. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  361. </repository>
  362. </distributionManagement>
  363. </profile>
  364. </profiles>
  365. </project>