pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>BI</artifactId>
  7. <groupId>com.usoftchina.platform</groupId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.usoftchina.platform</groupId>
  12. <artifactId>bi-server</artifactId>
  13. <description>bi-server</description>
  14. <packaging>war</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.usoftchina.platform</groupId>
  18. <artifactId>bi-server-starter</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.usoftchina.platform</groupId>
  22. <artifactId>bi-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.usoftchina.platform</groupId>
  26. <artifactId>bi-auth</artifactId>
  27. </dependency>
  28. <!-- Mysql -->
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <!-- oracle -->
  34. <dependency>
  35. <groupId>ojdbc6</groupId>
  36. <artifactId>ojdbc6</artifactId>
  37. <version>11.2.0</version>
  38. </dependency>
  39. <!-- JWT -->
  40. <dependency>
  41. <groupId>com.auth0</groupId>
  42. <artifactId>java-jwt</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-tomcat</artifactId>
  47. <!--打包的时候可以不用包进去,别的设施会提供。事实上该依赖理论上可以参与编译,测试,运行等周期。
  48. 相当于compile,但是打包阶段做了exclude操作-->
  49. <scope>provided</scope>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <finalName>bi-server</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <distributionManagement>
  62. <!-- 发布release仓库 -->
  63. <repository>
  64. <id>platform-release</id>
  65. <name>platform-release</name>
  66. <url>http://10.10.101.21:8081/artifactory/libs-release-local</url>
  67. </repository>
  68. <!-- 发布快照版本 -->
  69. <snapshotRepository>
  70. <id>platform-snapshots</id>
  71. <name>platform-snapshots</name>
  72. <url>http://10.10.101.21:8081/artifactory/libs-snapshot-local</url>
  73. </snapshotRepository>
  74. </distributionManagement>
  75. </project>