Skip to content

Commit 2aeee1e

Browse files
committed
更新版本号为1.0.0
1 parent 33260c2 commit 2aeee1e

File tree

2 files changed

+171
-166
lines changed

2 files changed

+171
-166
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ http://repo1.maven.org/maven2/com/github/abel533/mapper/
9393

9494
###EntityMapper(单一Mapper操作全部实体)
9595

96-
1. [如何集成EntityMapper](http://git.oschina.net/free/Mapper/blob/master/wiki/entity/1.Integration.md)
96+
1. [如何集成EntityMapper](http://git.oschina.net/free/EntityMapper/blob/master/wiki/entity/1.Integration.md)
9797

98-
2. [如何使用EntityMapper](http://git.oschina.net/free/Mapper/blob/master/wiki/entity/2.Use.md)
98+
2. [如何使用EntityMapper](http://git.oschina.net/free/EntityMapper/blob/master/wiki/entity/2.Use.md)
9999

100-
3. [如何使用Mapper专用的MyBatis Generator插件](http://git.oschina.net/free/Mapper/blob/master/wiki/mapper/5.UseMBG.md)
100+
3. [如何使用Mapper专用的MyBatis Generator插件](http://git.oschina.net/free/EntityMapper/blob/master/wiki/mapper/5.UseMBG.md)
101101

102102
###如何使用SqlMapper
103103

104-
1. [如何使用SqlMapper](http://git.oschina.net/free/Mapper/blob/master/wiki/UseSqlMapper.md)
104+
1. [如何使用SqlMapper](http://git.oschina.net/free/EntityMapper/blob/master/wiki/UseSqlMapper.md)
105105

106106
##作者信息
107107

pom.xml

Lines changed: 167 additions & 162 deletions
Original file line numberDiff line numberDiff line change
@@ -1,175 +1,180 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>com.github.abel533</groupId>
6-
<artifactId>mapper</artifactId>
7-
<version>2.3.4</version>
8-
<packaging>jar</packaging>
5+
<groupId>com.github.abel533</groupId>
6+
<artifactId>entitymapper</artifactId>
7+
<version>1.0.0</version>
8+
<packaging>jar</packaging>
99

10-
<name>mapper</name>
11-
<description>Mybatis通用Mapper</description>
12-
<url>https://github.com/abel533/Mapper</url>
10+
<name>mapper</name>
11+
<description>Mybatis-EntityMapper</description>
12+
<url>https://github.com/abel533/Mapper</url>
1313

14-
<licenses>
15-
<license>
16-
<name>The MIT License (MIT)</name>
17-
<url>https://github.com/abel533/Mapper/blob/master/LICENSE</url>
18-
</license>
19-
</licenses>
14+
<licenses>
15+
<license>
16+
<name>The MIT License (MIT)</name>
17+
<url>https://github.com/abel533/Mapper/blob/master/LICENSE</url>
18+
</license>
19+
</licenses>
2020

21-
<developers>
22-
<developer>
23-
<name>abel533</name>
24-
<email>abel533@gmail.com</email>
25-
</developer>
26-
</developers>
21+
<developers>
22+
<developer>
23+
<name>abel533</name>
24+
<email>abel533@gmail.com</email>
25+
</developer>
26+
</developers>
2727

28-
<scm>
29-
<connection>scm:git@github.com:abel533/Mapper.git</connection>
30-
<developerConnection>scm:git@github.com:abel533/Mapper.git</developerConnection>
31-
<url>git@github.com:abel533/Mapper.git</url>
32-
</scm>
28+
<scm>
29+
<connection>scm:git@github.com:abel533/Mapper.git</connection>
30+
<developerConnection>scm:git@github.com:abel533/Mapper.git</developerConnection>
31+
<url>git@github.com:abel533/Mapper.git</url>
32+
</scm>
3333

34-
<properties>
35-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
</properties>
34+
<properties>
35+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36+
</properties>
3737

38-
<dependencies>
39-
<!--必须依赖-->
40-
<dependency>
41-
<groupId>javax.persistence</groupId>
42-
<artifactId>persistence-api</artifactId>
43-
<version>1.0</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>commons-beanutils</groupId>
47-
<artifactId>commons-beanutils</artifactId>
48-
<version>1.9.2</version>
49-
</dependency>
38+
<dependencies>
39+
<!--必须依赖-->
40+
<dependency>
41+
<groupId>javax.persistence</groupId>
42+
<artifactId>persistence-api</artifactId>
43+
<version>1.0</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>commons-beanutils</groupId>
47+
<artifactId>commons-beanutils</artifactId>
48+
<version>1.9.2</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.github.abel533</groupId>
52+
<artifactId>mapper</artifactId>
53+
<version>3.0.0</version>
54+
</dependency>
5055

51-
<!--可选依赖-->
52-
<dependency>
53-
<groupId>org.mybatis</groupId>
54-
<artifactId>mybatis</artifactId>
55-
<version>3.2.6</version>
56-
<scope>compile</scope>
57-
<optional>true</optional>
58-
</dependency>
59-
<!-- Mybatis Generator -->
60-
<dependency>
61-
<groupId>org.mybatis.generator</groupId>
62-
<artifactId>mybatis-generator-core</artifactId>
63-
<version>1.3.2</version>
64-
<scope>compile</scope>
65-
<optional>true</optional>
66-
</dependency>
56+
<!--可选依赖-->
57+
<dependency>
58+
<groupId>org.mybatis</groupId>
59+
<artifactId>mybatis</artifactId>
60+
<version>3.2.6</version>
61+
<scope>compile</scope>
62+
<optional>true</optional>
63+
</dependency>
64+
<!-- Mybatis Generator -->
65+
<dependency>
66+
<groupId>org.mybatis.generator</groupId>
67+
<artifactId>mybatis-generator-core</artifactId>
68+
<version>1.3.2</version>
69+
<scope>compile</scope>
70+
<optional>true</optional>
71+
</dependency>
6772

68-
<!--测试-->
69-
<dependency>
70-
<groupId>junit</groupId>
71-
<artifactId>junit</artifactId>
72-
<version>4.11</version>
73-
<scope>test</scope>
74-
</dependency>
75-
<dependency>
76-
<groupId>log4j</groupId>
77-
<artifactId>log4j</artifactId>
78-
<version>1.2.17</version>
79-
<scope>test</scope>
80-
</dependency>
81-
<dependency>
82-
<groupId>org.hsqldb</groupId>
83-
<artifactId>hsqldb</artifactId>
84-
<version>2.2.9</version>
85-
<scope>test</scope>
86-
</dependency>
87-
<dependency>
88-
<groupId>mysql</groupId>
89-
<artifactId>mysql-connector-java</artifactId>
90-
<version>5.1.29</version>
91-
<scope>test</scope>
92-
</dependency>
93-
</dependencies>
73+
<!--测试-->
74+
<dependency>
75+
<groupId>junit</groupId>
76+
<artifactId>junit</artifactId>
77+
<version>4.11</version>
78+
<scope>test</scope>
79+
</dependency>
80+
<dependency>
81+
<groupId>log4j</groupId>
82+
<artifactId>log4j</artifactId>
83+
<version>1.2.17</version>
84+
<scope>test</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.hsqldb</groupId>
88+
<artifactId>hsqldb</artifactId>
89+
<version>2.2.9</version>
90+
<scope>test</scope>
91+
</dependency>
92+
<dependency>
93+
<groupId>mysql</groupId>
94+
<artifactId>mysql-connector-java</artifactId>
95+
<version>5.1.29</version>
96+
<scope>test</scope>
97+
</dependency>
98+
</dependencies>
9499

95-
<build>
96-
<testResources>
97-
<testResource>
98-
<directory>src/test/resources</directory>
99-
</testResource>
100-
<testResource>
101-
<directory>src/test/java</directory>
102-
</testResource>
103-
</testResources>
104-
</build>
100+
<build>
101+
<testResources>
102+
<testResource>
103+
<directory>src/test/resources</directory>
104+
</testResource>
105+
<testResource>
106+
<directory>src/test/java</directory>
107+
</testResource>
108+
</testResources>
109+
</build>
105110

106-
<profiles>
107-
<profile>
108-
<id>release</id>
109-
<build>
110-
<plugins>
111-
<!--Compiler-->
112-
<plugin>
113-
<artifactId>maven-compiler-plugin</artifactId>
114-
<configuration>
115-
<source>1.6</source>
116-
<target>1.6</target>
117-
</configuration>
118-
</plugin>
119-
<!-- Source -->
120-
<plugin>
121-
<groupId>org.apache.maven.plugins</groupId>
122-
<artifactId>maven-source-plugin</artifactId>
123-
<version>2.2.1</version>
124-
<executions>
125-
<execution>
126-
<phase>package</phase>
127-
<goals>
128-
<goal>jar-no-fork</goal>
129-
</goals>
130-
</execution>
131-
</executions>
132-
</plugin>
133-
<!-- Javadoc -->
134-
<plugin>
135-
<groupId>org.apache.maven.plugins</groupId>
136-
<artifactId>maven-javadoc-plugin</artifactId>
137-
<version>2.9.1</version>
138-
<executions>
139-
<execution>
140-
<phase>package</phase>
141-
<goals>
142-
<goal>jar</goal>
143-
</goals>
144-
</execution>
145-
</executions>
146-
</plugin>
147-
<!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase-->
148-
<plugin>
149-
<groupId>org.apache.maven.plugins</groupId>
150-
<artifactId>maven-gpg-plugin</artifactId>
151-
<executions>
152-
<execution>
153-
<id>sign-artifacts</id>
154-
<phase>verify</phase>
155-
<goals>
156-
<goal>sign</goal>
157-
</goals>
158-
</execution>
159-
</executions>
160-
</plugin>
161-
</plugins>
162-
</build>
163-
<distributionManagement>
164-
<snapshotRepository>
165-
<id>oss</id>
166-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
167-
</snapshotRepository>
168-
<repository>
169-
<id>oss</id>
170-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
171-
</repository>
172-
</distributionManagement>
173-
</profile>
174-
</profiles>
111+
<profiles>
112+
<profile>
113+
<id>release</id>
114+
<build>
115+
<plugins>
116+
<!--Compiler-->
117+
<plugin>
118+
<artifactId>maven-compiler-plugin</artifactId>
119+
<configuration>
120+
<source>1.6</source>
121+
<target>1.6</target>
122+
</configuration>
123+
</plugin>
124+
<!-- Source -->
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-source-plugin</artifactId>
128+
<version>2.2.1</version>
129+
<executions>
130+
<execution>
131+
<phase>package</phase>
132+
<goals>
133+
<goal>jar-no-fork</goal>
134+
</goals>
135+
</execution>
136+
</executions>
137+
</plugin>
138+
<!-- Javadoc -->
139+
<plugin>
140+
<groupId>org.apache.maven.plugins</groupId>
141+
<artifactId>maven-javadoc-plugin</artifactId>
142+
<version>2.9.1</version>
143+
<executions>
144+
<execution>
145+
<phase>package</phase>
146+
<goals>
147+
<goal>jar</goal>
148+
</goals>
149+
</execution>
150+
</executions>
151+
</plugin>
152+
<!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase-->
153+
<plugin>
154+
<groupId>org.apache.maven.plugins</groupId>
155+
<artifactId>maven-gpg-plugin</artifactId>
156+
<executions>
157+
<execution>
158+
<id>sign-artifacts</id>
159+
<phase>verify</phase>
160+
<goals>
161+
<goal>sign</goal>
162+
</goals>
163+
</execution>
164+
</executions>
165+
</plugin>
166+
</plugins>
167+
</build>
168+
<distributionManagement>
169+
<snapshotRepository>
170+
<id>oss</id>
171+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
172+
</snapshotRepository>
173+
<repository>
174+
<id>oss</id>
175+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
176+
</repository>
177+
</distributionManagement>
178+
</profile>
179+
</profiles>
175180
</project>

0 commit comments

Comments
 (0)