mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
130 lines
4.5 KiB
XML
130 lines
4.5 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>mybatis-flex-test</artifactId>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<version>1.1.8</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>mybatis-flex-native-test</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-core</artifactId>
|
|
<version>1.1.8</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>1.33</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.4.199</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>2.0.28</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>2.0.28</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>2.14.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.ruedigermoeller</groupId>
|
|
<artifactId>fst</artifactId>
|
|
<version>2.57</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!-- <resources>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>src/main/resources</directory>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>**/*</include>-->
|
|
<!-- </includes>-->
|
|
<!-- </resource>-->
|
|
<!-- </resources>-->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<annotationProcessorPaths>
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
<!-- <artifactId>lombok</artifactId>-->
|
|
<!-- <version>${org.projectlombok.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
<!-- <artifactId>lombok-mapstruct-binding</artifactId>-->
|
|
<!-- <version>${lombok-mapstruct-binding.version}</version>-->
|
|
<!-- </path>-->
|
|
<!-- <path>-->
|
|
<!-- <groupId>org.mapstruct</groupId>-->
|
|
<!-- <artifactId>mapstruct-processor</artifactId>-->
|
|
<!-- <version>${org.mapstruct.version}</version>-->
|
|
<!-- </path>-->
|
|
<path>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-annotation</artifactId>
|
|
<version>1.1.8</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |