Skip to content

Commit 2c577f2

Browse files
authored
Merge pull request #9 from hazendaz/master
[enhance] Add maven wrapper to run ant
2 parents f692aa0 + 66b597e commit 2c577f2

File tree

3 files changed

+97
-1
lines changed

3 files changed

+97
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/.project
2+
target/

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ Have fun and maybe You can post some improvements/bugfixes as this initial versi
1414
Greetings from Frankfurt/Germany
1515

1616
Peter Köhler
17-

pom.xml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Copyright 2004-2022 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+
https://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+
-->
19+
<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">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>org.mybatis</groupId>
24+
<artifactId>mybatis-parent</artifactId>
25+
<version>35</version>
26+
<relativePath />
27+
</parent>
28+
29+
<groupId>org.mybatis</groupId>
30+
<artifactId>ibatis2mybatis</artifactId>
31+
<version>1.0.0-SNAPSHOT</version>
32+
<packaging>pom</packaging>
33+
34+
<name>ibatis2mybatis</name>
35+
<description>
36+
The tool is designed around an xslt transformation and some text replacements packaged in an ant task and tries to deliver a good starting point before the more complex work begins.
37+
</description>
38+
<url>http://www.mybatis.org/</url>
39+
40+
<inceptionYear>2004</inceptionYear>
41+
42+
<scm>
43+
<url>http://github.com/mybatis/ibatis2mybatis</url>
44+
<connection>scm:git:ssh://github.com/mybatis/ibatis2mybatis.git</connection>
45+
<developerConnection>scm:git:ssh://[email protected]/mybatis/ibatis2mybatis.git</developerConnection>
46+
<tag>HEAD</tag>
47+
</scm>
48+
<issueManagement>
49+
<system>GitHub Issue Management</system>
50+
<url>https://github.com/mybatis/ibatis2mybatis/issues</url>
51+
</issueManagement>
52+
<ciManagement>
53+
<system>GitHub Actions</system>
54+
<url>https://github.com/mybatis/ibatis2mybatis/actions</url>
55+
</ciManagement>
56+
<distributionManagement>
57+
<site>
58+
<id>gh-pages</id>
59+
<name>Mybatis GitHub Pages</name>
60+
<url>git:ssh://[email protected]/mybatis/ibatis2mybatis.git?gh-pages#</url>
61+
</site>
62+
</distributionManagement>
63+
64+
<properties>
65+
<clirr.comparisonVersion>1.0.0-SNAPSHOT</clirr.comparisonVersion>
66+
<module.name>org.mybatis.ibatis2mybatis</module.name>
67+
<project.build.outputTimestamp>1645112687</project.build.outputTimestamp>
68+
</properties>
69+
70+
<build>
71+
<plugins>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-antrun-plugin</artifactId>
75+
<executions>
76+
<execution>
77+
<id>ibatis2mybatis</id>
78+
<phase>prepare-package</phase>
79+
<goals>
80+
<goal>run</goal>
81+
</goals>
82+
<configuration>
83+
<target>
84+
<ant antfile="${basedir}/build.xml">
85+
<target name="migrateToMyBatis3"/>
86+
</ant>
87+
</target>
88+
</configuration>
89+
</execution>
90+
</executions>
91+
</plugin>
92+
</plugins>
93+
94+
</build>
95+
96+
</project>

0 commit comments

Comments
 (0)