pom.xml 2.8 KB

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