-
Notifications
You must be signed in to change notification settings - Fork 41
/
pom.xml
82 lines (72 loc) · 2.68 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
<groupId>com.github.drtrang</groupId>
<artifactId>parent</artifactId>
<version>1.0.6</version>
</parent>
<artifactId>typehandlers-encrypt</artifactId>
<version>1.1.2</version>
<name>type-handlers-encrypt</name>
<description>MyBatis Type Handlers for Encrypt.</description>
<url>https://github.com/drtrang/typehandlers-encrypt</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://github.com/drtrang/typehandlers-encrypt/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<name>trang</name>
<email>donghao.l@hotmail.com</email>
</developer>
</developers>
<scm>
<url>https://github.com/drtrang/typehandlers-encrypt.git</url>
<connection>scm:git:https://github.com/drtrang/typehandlers-encrypt.git</connection>
<developerConnection>scm:git:https://github.com/drtrang</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<!-- 工程参数 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.7</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>