pom.xml 3.2 KB

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