pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.gyee</groupId>
  7. <artifactId>finereport</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.1.0.RELEASE</version>
  13. <relativePath/> <!-- 从存储库查找父级 -->
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <!--帆软依赖-->
  21. <dependency>
  22. <groupId>com.fr</groupId>
  23. <artifactId>fr-chart</artifactId>
  24. <version>3.0</version>
  25. <scope>system</scope>
  26. <systemPath>${project.basedir}/libs/inbasis_rpt.jar</systemPath>
  27. </dependency>
  28. <!-- 数据库相关的包-->
  29. <!-- https://mvnrepository.com/artifact/com.oracle/ojdbc14 -->
  30. <dependency>
  31. <groupId>com.oracle</groupId>
  32. <artifactId>ojdbc14</artifactId>
  33. <version>10.2.0.3.0</version>
  34. <scope>system</scope>
  35. <systemPath>${project.basedir}/libs/ojdbc14.jar</systemPath>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.mysql</groupId>
  39. <artifactId>mysql</artifactId>
  40. <version>5.1.6</version>
  41. <scope>system</scope>
  42. <systemPath>${project.basedir}/libs/mysql-connector-java-5.1.6-bin.jar</systemPath>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <configuration>
  51. <!--将本地libs目录下的jar打包到项目中-->
  52. <includeSystemScope>true</includeSystemScope>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>