pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>jar</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. <!-- SQLServer -->
  40. <dependency>
  41. <groupId>com.microsoft.sqlserver</groupId>
  42. <artifactId>mssql-jdbc</artifactId>
  43. <version>4.2.0</version>
  44. </dependency>
  45. <!-- JWT -->
  46. <dependency>
  47. <groupId>com.auth0</groupId>
  48. <artifactId>java-jwt</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.poi</groupId>
  52. <artifactId>poi</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.poi</groupId>
  56. <artifactId>poi-ooxml</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-cache</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>net.sf.ehcache</groupId>
  64. <artifactId>ehcache</artifactId>
  65. </dependency>
  66. <!--<dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-tomcat</artifactId>
  69. &lt;!&ndash;打包的时候可以不用包进去,别的设施会提供。事实上该依赖理论上可以参与编译,测试,运行等周期。
  70. 相当于compile,但是打包阶段做了exclude操作&ndash;&gt;
  71. <scope>provided</scope>
  72. </dependency>-->
  73. </dependencies>
  74. <build>
  75. <finalName>BI</finalName>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. <distributionManagement>
  84. <!-- 发布release仓库 -->
  85. <repository>
  86. <id>platform-release</id>
  87. <name>platform-release</name>
  88. <url>http://10.10.100.21:8081/artifactory/libs-release-local</url>
  89. </repository>
  90. <!-- 发布快照版本 -->
  91. <snapshotRepository>
  92. <id>platform-snapshots</id>
  93. <name>platform-snapshots</name>
  94. <url>http://10.10.100.21:8081/artifactory/libs-snapshot-local</url>
  95. </snapshotRepository>
  96. </distributionManagement>
  97. </project>