pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>commons-dbcp</groupId>
  54. <artifactId>commons-dbcp</artifactId>
  55. <version>1.4</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. <version>5.1.46</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.bstek.urule</groupId>
  64. <artifactId>urule-console-pro</artifactId>
  65. <version>3.0.1</version>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>org.slf4j</groupId>
  69. <artifactId>slf4j-jdk14</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>javax.servlet</groupId>
  75. <artifactId>servlet-api</artifactId>
  76. <version>2.5</version>
  77. <scope>provided</scope>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. <distributionManagement>
  89. <snapshotRepository>
  90. <id>ossrh</id>
  91. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  92. </snapshotRepository>
  93. <repository>
  94. <id>ossrh</id>
  95. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  96. </repository>
  97. </distributionManagement>
  98. <name>Urule Springboot Project</name>
  99. <url>https://github.com/youseries/urule/tree/master/urule-springboot</url>
  100. <issueManagement>
  101. <url>https://github.com/youseries/urule/issues</url>
  102. </issueManagement>
  103. <description>Urule Springboot Project</description>
  104. </project>