| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?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>
- <parent>
- <artifactId>report-parent</artifactId>
- <groupId>com.uas.report</groupId>
- <version>0.0.1</version>
- </parent>
- <artifactId>crystal-replace-view</artifactId>
- <packaging>jar</packaging>
- <repositories>
- <repository>
- <id>lib</id>
- <url>file://${project.basedir}/lib</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.uas.report</groupId>
- <artifactId>report-common</artifactId>
- </dependency>
- <!-- crystal reports dependencies -->
- <dependency>
- <groupId>com.crystaldecisions</groupId>
- <artifactId>CrystalReportsRuntime</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.crystaldecisions</groupId>
- <artifactId>CrystalCommon2</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.crystaldecisions</groupId>
- <artifactId>DatabaseConnectors</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.businessobjects.foundation</groupId>
- <artifactId>logging</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.crystaldecisions</groupId>
- <artifactId>keycodeDecoder</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.businessobjects.reports</groupId>
- <artifactId>JDBInterface</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>log4j-over-slf4j</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-configuration</groupId>
- <artifactId>commons-configuration</artifactId>
- <version>1.10</version>
- </dependency>
- <dependency>
- <groupId>com.ibm.icu</groupId>
- <artifactId>icu4j</artifactId>
- <version>60.2</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.2</version>
- </dependency>
- <dependency>
- <groupId>com.azalea.ufl</groupId>
- <artifactId>barcode</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.lowagie</groupId>
- <artifactId>itext</artifactId>
- <version>2.1.7.js5</version>
- </dependency>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|