pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>1.5.8.RELEASE</version>
  39. </parent>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.tomcat.embed</groupId>
  47. <artifactId>tomcat-embed-jasper</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.bstek.urule</groupId>
  51. <artifactId>urule-console</artifactId>
  52. <version>2.1.1-SNAPSHOT</version>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.apache.derby</groupId>
  56. <artifactId>derby</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.servlet</groupId>
  62. <artifactId>servlet-api</artifactId>
  63. <version>2.5</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. <distributionManagement>
  76. <snapshotRepository>
  77. <id>ossrh</id>
  78. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  79. </snapshotRepository>
  80. <repository>
  81. <id>ossrh</id>
  82. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  83. </repository>
  84. </distributionManagement>
  85. <name>Urule Springboot Project</name>
  86. <url>https://github.com/youseries/urule/tree/master/urule-springboot</url>
  87. <issueManagement>
  88. <url>https://github.com/youseries/urule/issues</url>
  89. </issueManagement>
  90. <description>Urule Springboot Project</description>
  91. </project>