Skip to content

Commit 6100e21

Browse files
committed
Update pom
1 parent 86c9d60 commit 6100e21

File tree

1 file changed

+26
-59
lines changed

1 file changed

+26
-59
lines changed

pom.xml

Lines changed: 26 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,32 @@
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+
-->
119
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
220
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
321
<modelVersion>4.0.0</modelVersion>
422

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+
630
<artifactId>mybatis-mapper-spring</artifactId>
731
<version>1.2.0</version>
832
<packaging>jar</packaging>
@@ -11,14 +35,7 @@
1135
<url>https://github.com/tangxbai/mybatis-mapper-spring</url>
1236
<description>Mybatis-mapper spring component for easy integration with spring</description>
1337

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>
2239

2340
<scm>
2441
<url>https://github.com/tangxbai/mybatis-mapper-spring.git</url>
@@ -32,29 +49,7 @@
3249
<url>https://github.com/tangxbai/mybatis-mapper-spring/issues</url>
3350
</issueManagement>
3451

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-
5552
<properties>
56-
<java.version>1.8</java.version>
57-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5853
<spring.version>4.3.5.RELEASE</spring.version>
5954
<mybatis-spring.version>2.0.3</mybatis-spring.version>
6055
<mybatis-mapper.version>1.2.0</mybatis-mapper.version>
@@ -84,32 +79,4 @@
8479
<version>${mybatis-mapper.version}</version>
8580
</dependency>
8681
</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>
11582
</project>

0 commit comments

Comments
 (0)