pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>com.bstek.urule</groupId>
  47. <artifactId>urule-console</artifactId>
  48. <version>2.1.1-SNAPSHOT</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.servlet</groupId>
  52. <artifactId>servlet-api</artifactId>
  53. <version>2.5</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-maven-plugin</artifactId>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <distributionManagement>
  66. <snapshotRepository>
  67. <id>ossrh</id>
  68. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  69. </snapshotRepository>
  70. <repository>
  71. <id>ossrh</id>
  72. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  73. </repository>
  74. </distributionManagement>
  75. <name>Urule Springboot Project</name>
  76. <url>https://github.com/youseries/urule/tree/master/urule-springboot</url>
  77. <issueManagement>
  78. <url>https://github.com/youseries/urule/issues</url>
  79. </issueManagement>
  80. <description>Urule Springboot Project</description>
  81. </project>