|
14 | 14 | See the License for the specific language governing permissions and
|
15 | 15 | limitations under the License.
|
16 | 16 | -->
|
17 |
| -<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"> |
| 17 | +<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/xsd/maven-4.0.0.xsd"> |
18 | 18 | <modelVersion>4.0.0</modelVersion>
|
19 | 19 |
|
20 | 20 | <parent>
|
21 | 21 | <groupId>org.mybatis</groupId>
|
22 | 22 | <artifactId>mybatis-parent</artifactId>
|
23 |
| - <version>21</version> |
| 23 | + <version>22-SNAPSHOT</version> |
24 | 24 | </parent>
|
25 | 25 |
|
26 | 26 | <artifactId>mybatis</artifactId>
|
|
130 | 130 | <osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
|
131 | 131 | <osgi.import>*;resolution:=optional</osgi.import>
|
132 | 132 | <osgi.dynamicImport>*</osgi.dynamicImport>
|
133 |
| - <javac.src.version>1.6</javac.src.version> |
134 |
| - <javac.target.version>1.6</javac.target.version> |
| 133 | + <maven.compiler.source>1.6</maven.compiler.source> |
| 134 | + <maven.compiler.target>1.6</maven.compiler.target> |
135 | 135 | </properties>
|
136 | 136 |
|
137 | 137 | <dependencies>
|
|
250 | 250 | <groupId>org.apache.maven.plugins</groupId>
|
251 | 251 | <artifactId>maven-pdf-plugin</artifactId>
|
252 | 252 | </plugin>
|
253 |
| - <plugin> |
254 |
| - <groupId>org.apache.maven.plugins</groupId> |
255 |
| - <artifactId>maven-release-plugin</artifactId> |
256 |
| - <configuration> |
257 |
| - <arguments>-Prelease</arguments> |
258 |
| - </configuration> |
259 |
| - </plugin> |
260 | 253 | <plugin>
|
261 | 254 | <groupId>org.sonatype.plugins</groupId>
|
262 | 255 | <artifactId>jarjar-maven-plugin</artifactId>
|
|
319 | 312 | <instrumentation>
|
320 | 313 | <ignores>
|
321 | 314 | <ignore>org.apache.ibatis.ognl.*</ignore>
|
| 315 | + <ignore>org.apache.ibatis.javassist.*</ignore> |
322 | 316 | </ignores>
|
323 | 317 | <excludes>
|
324 | 318 | <exclude>org/apache/ibatis/ognl/**/*.class</exclude>
|
| 319 | + <exclude>org/apache/ibatis/javassist/**/*.class</exclude> |
325 | 320 | </excludes>
|
326 | 321 | </instrumentation>
|
327 | 322 | </configuration>
|
|
333 | 328 | </execution>
|
334 | 329 | </executions>
|
335 | 330 | </plugin>
|
336 |
| - <plugin> |
337 |
| - <groupId>org.apache.maven.plugins</groupId> |
338 |
| - <artifactId>maven-surefire-plugin</artifactId> |
339 |
| - <configuration> |
340 |
| - <forkMode>pertest</forkMode> |
341 |
| - </configuration> |
342 |
| - </plugin> |
343 | 331 | </plugins>
|
| 332 | + |
344 | 333 | <resources>
|
345 | 334 | <resource>
|
346 | 335 | <directory>${basedir}</directory>
|
|
367 | 356 | </testResources>
|
368 | 357 | </build>
|
369 | 358 |
|
370 |
| - <reporting> |
371 |
| - <plugins> |
372 |
| - <plugin> |
373 |
| - <groupId>org.codehaus.mojo</groupId> |
374 |
| - <artifactId>cobertura-maven-plugin</artifactId> |
375 |
| - <configuration> |
376 |
| - <formats> |
377 |
| - <format>html</format> |
378 |
| - <format>xml</format> |
379 |
| - </formats> |
380 |
| - </configuration> |
381 |
| - </plugin> |
382 |
| - </plugins> |
383 |
| - </reporting> |
384 |
| - |
385 | 359 | </project>
|
0 commit comments