| | |
| | | <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | | <modelVersion>4.0.0</modelVersion> |
| | | |
| | | <artifactId>asrs-framework</artifactId> |
| | | <version>1.0.0</version> |
| | | |
| | | <name>framework</name> |
| | | |
| | | <parent> |
| | | <groupId>com.zy</groupId> |
| | | <artifactId>asrs</artifactId> |
| | | <version>1.0.0</version> |
| | | </parent> |
| | | |
| | | <properties> |
| | | <jdk.version>1.8</jdk.version> |
| | | <spring-framework.version>5.3.9</spring-framework.version> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-context</artifactId> |
| | | <version>${spring-framework.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>mysql</groupId> |
| | | <artifactId>mysql-connector-java</artifactId> |
| | | <version>5.1.46</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.microsoft.sqlserver</groupId> |
| | | <artifactId>mssql-jdbc</artifactId> |
| | | <version>8.2.2.jre8</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-resources-plugin</artifactId> |
| | | <configuration> |
| | | <encoding>UTF-8</encoding> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | </project> |
| | | <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| | | <modelVersion>4.0.0</modelVersion>
|
| | |
|
| | | <artifactId>asrs-framework</artifactId>
|
| | | <version>1.0.0</version>
|
| | |
|
| | | <name>framework</name>
|
| | |
|
| | | <parent>
|
| | | <groupId>com.zy</groupId>
|
| | | <artifactId>asrs</artifactId>
|
| | | <version>1.0.0</version>
|
| | | </parent>
|
| | |
|
| | | <properties>
|
| | | <jdk.version>1.8</jdk.version>
|
| | | <spring-framework.version>5.3.9</spring-framework.version>
|
| | | </properties>
|
| | |
|
| | | <dependencies>
|
| | | <dependency>
|
| | | <groupId>org.springframework</groupId>
|
| | | <artifactId>spring-context</artifactId>
|
| | | <version>${spring-framework.version}</version>
|
| | | </dependency>
|
| | | <dependency>
|
| | | <groupId>mysql</groupId>
|
| | | <artifactId>mysql-connector-java</artifactId>
|
| | | <version>5.1.46</version>
|
| | | </dependency>
|
| | | <dependency>
|
| | | <groupId>com.microsoft.sqlserver</groupId>
|
| | | <artifactId>mssql-jdbc</artifactId>
|
| | | <version>8.2.2.jre8</version>
|
| | | </dependency>
|
| | | </dependencies>
|
| | |
|
| | | <build>
|
| | | <plugins>
|
| | | <plugin>
|
| | | <groupId>org.apache.maven.plugins</groupId>
|
| | | <artifactId>maven-resources-plugin</artifactId>
|
| | | <configuration>
|
| | | <encoding>UTF-8</encoding>
|
| | | </configuration>
|
| | | </plugin>
|
| | | </plugins>
|
| | | </build>
|
| | |
|
| | | </project>
|