pom.xml 2.5 KB

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