|
@@ -0,0 +1,63 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <groupId>cn.gyee</groupId>
|
|
|
+ <artifactId>finereport</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.1.0.RELEASE</version>
|
|
|
+ <relativePath/> <!-- 从存储库查找父级 -->
|
|
|
+ </parent>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--帆软依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fr</groupId>
|
|
|
+ <artifactId>fr-chart</artifactId>
|
|
|
+ <version>3.0</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${project.basedir}/libs/inbasis_rpt.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 数据库相关的包-->
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.oracle/ojdbc14 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
+ <artifactId>ojdbc14</artifactId>
|
|
|
+ <version>10.2.0.3.0</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${project.basedir}/libs/ojdbc14.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.mysql</groupId>
|
|
|
+ <artifactId>mysql</artifactId>
|
|
|
+ <version>5.1.6</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${project.basedir}/libs/mysql-connector-java-5.1.6-bin.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <!--将本地libs目录下的jar打包到项目中-->
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|