pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.bstek.urule</groupId>
  7. <artifactId>urule-springboot</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <properties>
  10. <java.version>1.8</java.version>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <licenses>
  14. <license>
  15. <name>The Apache License, Version 2.0</name>
  16. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  17. </license>
  18. </licenses>
  19. <developers>
  20. <developer>
  21. <name>Gaojie</name>
  22. <email>jacky.gao@bstek.com</email>
  23. <organization>Bstek</organization>
  24. <organizationUrl>http://www.bstek.com</organizationUrl>
  25. </developer>
  26. </developers>
  27. <scm>
  28. <connection>https://github.com/youseries/urule.git</connection>
  29. <developerConnection>https://github.com/youseries/urule.git</developerConnection>
  30. <url>https://github.com/youseries/urule</url>
  31. </scm>
  32. <organization>
  33. <name>Bstek</name>
  34. <url>http://www.bstek.com</url>
  35. </organization>
  36. <parent>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-parent</artifactId>
  39. <version>2.2.4.RELEASE</version>
  40. </parent>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. <exclusions>
  46. <exclusion>
  47. <artifactId>hibernate-validator</artifactId>
  48. <groupId>org.hibernate.validator</groupId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.bstek.urule</groupId>
  54. <artifactId>urule-console-pro</artifactId>
  55. <version>3.0.0</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-jdk14</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>javax.servlet</groupId>
  65. <artifactId>servlet-api</artifactId>
  66. <version>2.5</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. <distributionManagement>
  79. <snapshotRepository>
  80. <id>ossrh</id>
  81. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  82. </snapshotRepository>
  83. <repository>
  84. <id>ossrh</id>
  85. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  86. </repository>
  87. </distributionManagement>
  88. <name>Urule Springboot Project</name>
  89. <url>https://github.com/youseries/urule/tree/master/urule-springboot</url>
  90. <issueManagement>
  91. <url>https://github.com/youseries/urule/issues</url>
  92. </issueManagement>
  93. <description>Urule Springboot Project</description>
  94. </project>