pom.xml 1.4 KB
Newer Older
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
1 2 3
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>
4
	<!--parent -->
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
5
	<parent>
6
		<groupId>org.dromara.mybatis-jpa-extra</groupId>
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
7
		<artifactId>mybatis-jpa-extra-parent</artifactId>
M
3.2  
MaxKey 已提交
8
		<version>3.2</version>
M
3.0.1  
MaxKey 已提交
9
		<relativePath>../pom.xml</relativePath>
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
10
	</parent>
11 12
	
	<!--self -->
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
13
	<artifactId>mybatis-jpa-extra</artifactId>
14
	<name>mybatis-jpa-extra</name>
M
MaxKey 已提交
15
	<description>扩展MyBatis JPA支持,简化CUID操作,增强SELECT分页查询</description>
M
url  
MaxKey 已提交
16
	<url>https://github.com/MaxKeyTop/mybatis-jpa-extra</url>
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
17 18

	<dependencies>
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
19

MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
20
	</dependencies>
21
	
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
	<build>
		<testResources>
			<testResource>
				<directory>src/test/java</directory>
				<excludes>
					<exclude>**/*.java</exclude>
				</excludes>
			</testResource>
			<testResource>
				<directory>src/test/resources</directory>
				<excludes>
					<exclude>**/*.java</exclude>
				</excludes>
			</testResource>
		</testResources>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.7.0</version>
				<configuration>
M
MaxKey 已提交
43 44
					<source>17</source>
					<target>17</target>
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
45 46 47 48 49
					<encoding>utf8</encoding>
				</configuration>
			</plugin>
		</plugins>
	</build>
50
</project>