pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <artifactId>urule-core</artifactId>
  4. <version>2.1.8-SNAPSHOT</version>
  5. <properties>
  6. <lombok.version>1.18.4</lombok.version>
  7. <logback.version>1.2.3</logback.version>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. </properties>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.antlr</groupId>
  13. <artifactId>antlr4-runtime</artifactId>
  14. <version>4.5</version>
  15. </dependency>
  16. <!-- lombok插件 -->
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <version>${lombok.version}</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.slf4j</groupId>
  25. <artifactId>slf4j-api</artifactId>
  26. <version>1.7.25</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>ch.qos.logback</groupId>
  30. <artifactId>logback-core</artifactId>
  31. <version>${logback.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>ch.qos.logback</groupId>
  35. <artifactId>logback-classic</artifactId>
  36. <version>${logback.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>jcl-over-slf4j</artifactId>
  41. <version>1.7.25</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-beans</artifactId>
  46. <version>5.2.3.RELEASE</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-core</artifactId>
  51. <version>5.2.3.RELEASE</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-context</artifactId>
  56. <version>5.2.3.RELEASE</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-lang</groupId>
  60. <artifactId>commons-lang</artifactId>
  61. <version>2.6</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>dom4j</groupId>
  65. <artifactId>dom4j</artifactId>
  66. <version>1.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-beanutils</groupId>
  70. <artifactId>commons-beanutils</artifactId>
  71. <version>1.8.3</version>
  72. <exclusions>
  73. <exclusion>
  74. <artifactId>commons-logging</artifactId>
  75. <groupId>commons-logging</groupId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.codehaus.jackson</groupId>
  81. <artifactId>jackson-mapper-asl</artifactId>
  82. <version>1.9.11</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-io</groupId>
  86. <artifactId>commons-io</artifactId>
  87. <version>2.4</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <version>4.12</version>
  93. <scope>test</scope>
  94. </dependency>
  95. </dependencies>
  96. <parent>
  97. <groupId>com.bstek.urule</groupId>
  98. <artifactId>urule-parent</artifactId>
  99. <version>2.0.4</version>
  100. </parent>
  101. <licenses>
  102. <license>
  103. <name>The Apache License, Version 2.0</name>
  104. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  105. </license>
  106. </licenses>
  107. <developers>
  108. <developer>
  109. <name>Gaojie</name>
  110. <email>jacky.gao@bstek.com</email>
  111. <organization>Bstek</organization>
  112. <organizationUrl>http://www.bstek.com</organizationUrl>
  113. </developer>
  114. </developers>
  115. <scm>
  116. <connection>https://github.com/youseries/urule.git</connection>
  117. <developerConnection>https://github.com/youseries/urule.git</developerConnection>
  118. <url>https://github.com/youseries/urule</url>
  119. </scm>
  120. <organization>
  121. <name>Bstek</name>
  122. <url>http://www.bstek.com</url>
  123. </organization>
  124. <name>URule Core Project</name>
  125. <url>https://github.com/youseries/urule/tree/master/urule-core</url>
  126. </project>