| | |
| | | <dependencies> |
| | | |
| | | <dependency> |
| | | <groupId>org.joda</groupId> |
| | | <artifactId>joda-money</artifactId> |
| | | <version>1.0.2</version> <!-- 最新版本可在 Maven Central 查询 --> |
| | | </dependency> |
| | | |
| | | |
| | | <dependency> |
| | | <groupId>com.oracle.database.jdbc</groupId> |
| | | <artifactId>ojdbc8</artifactId> |
| | | <version>19.8.0.0</version> |
| | |
| | | <artifactId>sqljdbc4</artifactId> |
| | | <version>4.0</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.microsoft.sqlserver</groupId> |
| | | <artifactId>mssql-jdbc</artifactId> |
| | | <version>10.2.0.jre8</version> <!-- 使用最新版本 --> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- Mysql驱动包 --> |
| | | <dependency> |
| | |
| | | <warName>${project.artifactId}</warName> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-jar-plugin</artifactId> |
| | | <version>3.2.0</version> |
| | | <configuration> |
| | | <excludes> |
| | | <!-- 排除 Font 文件夹 --> |
| | | <exclude>**/Font/**</exclude> |
| | | </excludes> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | <finalName>${project.artifactId}</finalName> |
| | | </build> |