pom.xml 3.2 KB

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