|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Copyright (C) 2019 the original author or authors. |
| 5 | +
|
| 6 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +
|
| 18 | +--> |
1 | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 21 | <modelVersion>4.0.0</modelVersion> |
4 | 22 |
|
5 | | - <groupId>com.viiyue.plugins</groupId> |
| 23 | + <parent> |
| 24 | + <groupId>com.viiyue.plugins</groupId> |
| 25 | + <artifactId>plugin-release-parent</artifactId> |
| 26 | + <version>1</version> |
| 27 | + <relativePath /> |
| 28 | + </parent> |
| 29 | + |
6 | 30 | <artifactId>mybatis-mapper-spring</artifactId> |
7 | 31 | <version>1.2.0</version> |
8 | 32 | <packaging>jar</packaging> |
|
11 | 35 | <url>https://github.com/tangxbai/mybatis-mapper-spring</url> |
12 | 36 | <description>Mybatis-mapper spring component for easy integration with spring</description> |
13 | 37 |
|
14 | | - <inceptionYear>2017</inceptionYear> |
15 | | - |
16 | | - <licenses> |
17 | | - <license> |
18 | | - <name>The Apache Software License, Version 2.0</name> |
19 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
20 | | - </license> |
21 | | - </licenses> |
| 38 | + <inceptionYear>2019</inceptionYear> |
22 | 39 |
|
23 | 40 | <scm> |
24 | 41 | <url>https://github.com/tangxbai/mybatis-mapper-spring.git</url> |
|
32 | 49 | <url>https://github.com/tangxbai/mybatis-mapper-spring/issues</url> |
33 | 50 | </issueManagement> |
34 | 51 |
|
35 | | - <distributionManagement> |
36 | | - <snapshotRepository> |
37 | | - <id>ossrh</id> |
38 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
39 | | - </snapshotRepository> |
40 | | - <repository> |
41 | | - <id>ossrh</id> |
42 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
43 | | - </repository> |
44 | | - </distributionManagement> |
45 | | - |
46 | | - <developers> |
47 | | - <developer> |
48 | | - <name>tangxbai</name> |
49 | | - <email>tangxbai@hotmail.com</email> |
50 | | - <timezone>GMT+8</timezone> |
51 | | - <url>https://github.com/tangxbai</url> |
52 | | - </developer> |
53 | | - </developers> |
54 | | - |
55 | 52 | <properties> |
56 | | - <java.version>1.8</java.version> |
57 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
58 | 53 | <spring.version>4.3.5.RELEASE</spring.version> |
59 | 54 | <mybatis-spring.version>2.0.3</mybatis-spring.version> |
60 | 55 | <mybatis-mapper.version>1.2.0</mybatis-mapper.version> |
|
84 | 79 | <version>${mybatis-mapper.version}</version> |
85 | 80 | </dependency> |
86 | 81 | </dependencies> |
87 | | - |
88 | | - <build> |
89 | | - <plugins> |
90 | | - <plugin> |
91 | | - <groupId>org.apache.maven.plugins</groupId> |
92 | | - <artifactId>maven-compiler-plugin</artifactId> |
93 | | - <version>3.8.0</version> |
94 | | - <configuration> |
95 | | - <source>${java.version}</source> |
96 | | - <target>${java.version}</target> |
97 | | - </configuration> |
98 | | - </plugin> |
99 | | - <plugin> |
100 | | - <groupId>org.apache.maven.plugins</groupId> |
101 | | - <artifactId>maven-gpg-plugin</artifactId> |
102 | | - <version>1.6</version> |
103 | | - <executions> |
104 | | - <execution> |
105 | | - <id>sign-artifacts</id> |
106 | | - <phase>verify</phase> |
107 | | - <goals> |
108 | | - <goal>sign</goal> |
109 | | - </goals> |
110 | | - </execution> |
111 | | - </executions> |
112 | | - </plugin> |
113 | | - </plugins> |
114 | | - </build> |
115 | 82 | </project> |
0 commit comments