pom.xml 2.6 KB

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