pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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.bstek.urule</groupId>
  6. <artifactId>urule-springboot</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <properties>
  9. <java.version>1.7</java.version>
  10. <tomcat.version>8.5.5</tomcat.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.0.3.RELEASE</version>
  40. <relativePath />
  41. </parent>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.bstek.urule</groupId>
  49. <artifactId>urule-console-pro</artifactId>
  50. <version>2.1.4</version>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-jdk14</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.servlet</groupId>
  60. <artifactId>servlet-api</artifactId>
  61. <version>2.5</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. <distributionManagement>
  74. <snapshotRepository>
  75. <id>ossrh</id>
  76. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  77. </snapshotRepository>
  78. <repository>
  79. <id>ossrh</id>
  80. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  81. </repository>
  82. </distributionManagement>
  83. <name>Urule Springboot Project</name>
  84. <url>https://github.com/youseries/urule/tree/master/urule-springboot</url>
  85. <issueManagement>
  86. <url>https://github.com/youseries/urule/issues</url>
  87. </issueManagement>
  88. <description>Urule Springboot Project</description>
  89. </project>