|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 2 | + <parent> |
| 3 | + <groupId>org.sonatype.oss</groupId> |
| 4 | + <artifactId>oss-parent</artifactId> |
| 5 | + <version>2</version> |
| 6 | + </parent> |
2 | 7 | <modelVersion>4.0.0</modelVersion>
|
3 | 8 | <groupId>org.mybatis</groupId>
|
4 | 9 | <artifactId>mybatis</artifactId>
|
|
41 | 46 |
|
42 | 47 | </developer>
|
43 | 48 | </developers>
|
44 |
| - <properties> |
45 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
46 |
| - </properties> |
47 | 49 | <scm>
|
48 | 50 | <url>scm:svn:https://mybatis.googlecode.com/svn/</url>
|
49 | 51 | <connection>scm:svn:https://mybatis.googlecode.com/svn/</connection>
|
|
70 | 72 | </reporting>
|
71 | 73 | <build>
|
72 | 74 | <plugins>
|
73 |
| - <plugin> |
74 |
| - <groupId>org.apache.maven.plugins</groupId> |
75 |
| - <artifactId>maven-release-plugin</artifactId> |
76 |
| - <configuration> |
77 |
| - <tagBase>https://mybatis.googlecode.com/svn/tags/</tagBase> |
78 |
| - <mavenExecutorId>forked-path</mavenExecutorId> |
79 |
| - </configuration> |
80 |
| - </plugin> |
81 | 75 | <plugin>
|
82 | 76 | <artifactId>maven-assembly-plugin</artifactId>
|
83 | 77 | <version>2.2-beta-5</version>
|
|
96 | 90 | <target>1.5</target>
|
97 | 91 | </configuration>
|
98 | 92 | </plugin>
|
99 |
| - <plugin> |
100 |
| - <groupId>org.apache.maven.plugins</groupId> |
101 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
102 |
| - </plugin> |
103 | 93 | <plugin>
|
104 | 94 | <groupId>org.codehaus.mojo</groupId>
|
105 | 95 | <artifactId>cobertura-maven-plugin</artifactId>
|
|
121 | 111 | </execution>
|
122 | 112 | </executions>
|
123 | 113 | </plugin>
|
124 |
| - <plugin> |
125 |
| - <groupId>org.apache.maven.plugins</groupId> |
126 |
| - <artifactId>maven-source-plugin</artifactId> |
127 |
| - <executions> |
128 |
| - <execution> |
129 |
| - <goals> |
130 |
| - <goal>jar</goal> |
131 |
| - </goals> |
132 |
| - </execution> |
133 |
| - </executions> |
134 |
| - </plugin> |
135 | 114 | </plugins>
|
136 | 115 | <resources>
|
137 | 116 | <resource>
|
|
225 | 204 | <scope>test</scope>
|
226 | 205 | </dependency>
|
227 | 206 | </dependencies>
|
228 |
| - <distributionManagement> |
229 |
| - <snapshotRepository> |
230 |
| - <id>sonatype-nexus-snapshots</id> |
231 |
| - <name>Sonatype Nexus Snapshots</name> |
232 |
| - <url>http://oss.sonatype.org/content/repositories/snapshots</url> |
233 |
| - </snapshotRepository> |
234 |
| - <repository> |
235 |
| - <id>sonatype-nexus-staging</id> |
236 |
| - <name>Nexus Release Repository</name> |
237 |
| - <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
238 |
| - </repository> |
239 |
| - </distributionManagement> |
240 |
| - <profiles> |
241 |
| - <profile> |
242 |
| - <id>release-sign-artifacts</id> |
243 |
| - <activation> |
244 |
| - <property> |
245 |
| - <name>performRelease</name> |
246 |
| - <value>true</value> |
247 |
| - </property> |
248 |
| - </activation> |
249 |
| - <build> |
250 |
| - <plugins> |
251 |
| - <plugin> |
252 |
| - <groupId>org.apache.maven.plugins</groupId> |
253 |
| - <artifactId>maven-gpg-plugin</artifactId> |
254 |
| - <version>1.0-alpha-4</version> |
255 |
| - <executions> |
256 |
| - <execution> |
257 |
| - <id>sign-artifacts</id> |
258 |
| - <phase>verify</phase> |
259 |
| - <goals> |
260 |
| - <goal>sign</goal> |
261 |
| - </goals> |
262 |
| - </execution> |
263 |
| - </executions> |
264 |
| - </plugin> |
265 |
| - </plugins> |
266 |
| - </build> |
267 |
| - </profile> |
268 |
| - </profiles> |
269 | 207 | </project>
|
0 commit comments