|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<!-- |
3 | | - Copyright 2010-2013 The MyBatis Team |
4 | | -
|
5 | | - Licensed under the Apache License, Version 2.0 (the "License"); |
6 | | - you may not use this file except in compliance with the License. |
7 | | - You may obtain a copy of the License at |
8 | | -
|
9 | | - http://www.apache.org/licenses/LICENSE-2.0 |
10 | | -
|
11 | | - Unless required by applicable law or agreed to in writing, software |
12 | | - distributed under the License is distributed on an "AS IS" BASIS, |
13 | | - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 | | - See the License for the specific language governing permissions and |
15 | | - limitations under the License. |
16 | | ---> |
17 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
18 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
19 | | - <modelVersion>4.0.0</modelVersion> |
20 | | - |
21 | | - <parent> |
22 | | - <groupId>org.mybatis</groupId> |
23 | | - <artifactId>mybatis-parent</artifactId> |
24 | | - <version>18</version> |
25 | | - </parent> |
26 | | - |
27 | | - <artifactId>mybatis-migrations</artifactId> |
28 | | - <version>3.1.1-SNAPSHOT</version> |
29 | | - |
30 | | - <name>MyBatis Migrations</name> |
31 | | - <url>http://www.mybatis.org/migrations/</url> |
32 | | - |
33 | | - <contributors> |
34 | | - <contributor> |
35 | | - <name>Riccardo Cossu</name> |
36 | | - |
37 | | - </contributor> |
38 | | - </contributors> |
39 | | - |
40 | | - <scm> |
41 | | - <url>http://github.com/mybatis/migrations</url> |
42 | | - <connection>scm:git:ssh://github.com/mybatis/migrations.git</connection> |
43 | | - < developerConnection>scm:git:git+ssh:// [email protected]/mybatis/migrations.git</ developerConnection> |
44 | | - <tag>HEAD</tag> |
45 | | - </scm> |
46 | | - <issueManagement> |
47 | | - <system>GitHub Issue Management</system> |
48 | | - <url>https://github.com/mybatis/migrations/issues</url> |
49 | | - </issueManagement> |
50 | | - <ciManagement> |
51 | | - <system>Travis CI</system> |
52 | | - <url>https://travis-ci.org/mybatis/migrations</url> |
53 | | - </ciManagement> |
54 | | - <distributionManagement> |
55 | | - <site> |
56 | | - <id>github</id> |
57 | | - < url>gitsite: [email protected]/mybatis/migrations.git</ url> |
58 | | - </site> |
59 | | - </distributionManagement> |
60 | | - |
61 | | - <properties> |
62 | | - <findbugs.onlyAnalyze>org.apache.ibatis.migration</findbugs.onlyAnalyze> |
63 | | - <clirr.comparisonVersion>3.1.0</clirr.comparisonVersion> |
64 | | - </properties> |
65 | | - |
66 | | - <dependencies> |
67 | | - <dependency> |
68 | | - <groupId>org.mybatis</groupId> |
69 | | - <artifactId>mybatis</artifactId> |
70 | | - <version>3.2.3-SNAPSHOT</version> |
71 | | - </dependency> |
72 | | - <dependency> |
73 | | - <groupId>org.hamcrest</groupId> |
74 | | - <artifactId>hamcrest-all</artifactId> |
75 | | - <version>1.3</version> |
76 | | - <scope>test</scope> |
77 | | - </dependency> |
78 | | - <dependency> |
79 | | - <groupId>junit</groupId> |
80 | | - <artifactId>junit</artifactId> |
81 | | - <version>4.11</version> |
82 | | - <scope>test</scope> |
83 | | - </dependency> |
84 | | - <dependency> |
85 | | - <groupId>org.apache.derby</groupId> |
86 | | - <artifactId>derby</artifactId> |
87 | | - <version>10.9.1.0</version> |
88 | | - <scope>test</scope> |
89 | | - </dependency> |
90 | | - </dependencies> |
91 | | - |
92 | | - <build> |
93 | | - <resources> |
94 | | - <resource> |
95 | | - <directory>${basedir}</directory> |
96 | | - <targetPath>META-INF</targetPath> |
97 | | - <includes> |
98 | | - <include>LICENSE</include> |
99 | | - <include>NOTICE</include> |
100 | | - </includes> |
101 | | - </resource> |
102 | | - <resource> |
103 | | - <directory>${project.build.sourceDirectory}</directory> |
104 | | - <excludes> |
105 | | - <exclude>**/*.java</exclude> |
106 | | - <exclude>**/pom.properties</exclude> |
107 | | - </excludes> |
108 | | - </resource> |
109 | | - <resource> |
110 | | - <directory>${project.build.sourceDirectory}</directory> |
111 | | - <filtering>true</filtering> |
112 | | - <includes> |
113 | | - <include>**/pom.properties</include> |
114 | | - </includes> |
115 | | - </resource> |
116 | | - </resources> |
117 | | - <testResources> |
118 | | - <testResource> |
119 | | - <directory>${project.build.testSourceDirectory}</directory> |
120 | | - <excludes> |
121 | | - <exclude>**/*.java</exclude> |
122 | | - </excludes> |
123 | | - </testResource> |
124 | | - </testResources> |
125 | | - <plugins> |
126 | | - <plugin> |
127 | | - <groupId>org.codehaus.mojo</groupId> |
128 | | - <artifactId>appassembler-maven-plugin</artifactId> |
129 | | - <version>1.1.1</version> |
130 | | - <executions> |
131 | | - <execution> |
132 | | - <phase>package</phase> |
133 | | - <goals> |
134 | | - <goal>assemble</goal> |
135 | | - </goals> |
136 | | - </execution> |
137 | | - </executions> |
138 | | - <configuration> |
139 | | - <repositoryLayout>flat</repositoryLayout> |
140 | | - <repositoryName>lib</repositoryName> |
141 | | - <extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments> |
142 | | - <binFileExtensions> |
143 | | - <windows>.cmd</windows> |
144 | | - </binFileExtensions> |
145 | | - <programs> |
146 | | - <program> |
147 | | - <mainClass>org.apache.ibatis.migration.Migrator</mainClass> |
148 | | - <name>migrate</name> |
149 | | - </program> |
150 | | - </programs> |
151 | | - </configuration> |
152 | | - </plugin> |
153 | | - <plugin> |
154 | | - <groupId>org.apache.maven.plugins</groupId> |
155 | | - <artifactId>maven-assembly-plugin</artifactId> |
156 | | - <executions> |
157 | | - <execution> |
158 | | - <goals> |
159 | | - <goal>single</goal> |
160 | | - </goals> |
161 | | - <phase>package</phase> |
162 | | - <configuration> |
163 | | - <descriptors> |
164 | | - <descriptor>${basedir}/src/main/assembly/bundle.xml</descriptor> |
165 | | - </descriptors> |
166 | | - </configuration> |
167 | | - </execution> |
168 | | - </executions> |
169 | | - </plugin> |
170 | | - |
171 | | - </plugins> |
172 | | - </build> |
173 | | - |
174 | | -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright 2010-2013 The MyBatis Team |
| 4 | +
|
| 5 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + you may not use this file except in compliance with the License. |
| 7 | + You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | + Unless required by applicable law or agreed to in writing, software |
| 12 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + See the License for the specific language governing permissions and |
| 15 | + limitations under the License. |
| 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"> |
| 18 | + <modelVersion>4.0.0</modelVersion> |
| 19 | + |
| 20 | + <parent> |
| 21 | + <groupId>org.mybatis</groupId> |
| 22 | + <artifactId>mybatis-parent</artifactId> |
| 23 | + <version>18</version> |
| 24 | + </parent> |
| 25 | + |
| 26 | + <artifactId>mybatis-migrations</artifactId> |
| 27 | + <version>3.1.1</version> |
| 28 | + |
| 29 | + <name>MyBatis Migrations</name> |
| 30 | + <url>http://www.mybatis.org/migrations/</url> |
| 31 | + |
| 32 | + <contributors> |
| 33 | + <contributor> |
| 34 | + <name>Riccardo Cossu</name> |
| 35 | + |
| 36 | + </contributor> |
| 37 | + </contributors> |
| 38 | + |
| 39 | + <scm> |
| 40 | + <url>http://github.com/mybatis/migrations</url> |
| 41 | + <connection>scm:git:ssh://github.com/mybatis/migrations.git</connection> |
| 42 | + < developerConnection>scm:git:git+ssh:// [email protected]/mybatis/migrations.git</ developerConnection> |
| 43 | + <tag>mybatis-migrations-3.1.1</tag> |
| 44 | + </scm> |
| 45 | + <issueManagement> |
| 46 | + <system>GitHub Issue Management</system> |
| 47 | + <url>https://github.com/mybatis/migrations/issues</url> |
| 48 | + </issueManagement> |
| 49 | + <ciManagement> |
| 50 | + <system>Travis CI</system> |
| 51 | + <url>https://travis-ci.org/mybatis/migrations</url> |
| 52 | + </ciManagement> |
| 53 | + <distributionManagement> |
| 54 | + <site> |
| 55 | + <id>github</id> |
| 56 | + < url>gitsite: [email protected]/mybatis/migrations.git</ url> |
| 57 | + </site> |
| 58 | + </distributionManagement> |
| 59 | + |
| 60 | + <properties> |
| 61 | + <findbugs.onlyAnalyze>org.apache.ibatis.migration</findbugs.onlyAnalyze> |
| 62 | + <clirr.comparisonVersion>3.1.0</clirr.comparisonVersion> |
| 63 | + </properties> |
| 64 | + |
| 65 | + <dependencies> |
| 66 | + <dependency> |
| 67 | + <groupId>org.mybatis</groupId> |
| 68 | + <artifactId>mybatis</artifactId> |
| 69 | + <version>3.2.3</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.hamcrest</groupId> |
| 73 | + <artifactId>hamcrest-all</artifactId> |
| 74 | + <version>1.3</version> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>junit</groupId> |
| 79 | + <artifactId>junit</artifactId> |
| 80 | + <version>4.11</version> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.apache.derby</groupId> |
| 85 | + <artifactId>derby</artifactId> |
| 86 | + <version>10.9.1.0</version> |
| 87 | + <scope>test</scope> |
| 88 | + </dependency> |
| 89 | + </dependencies> |
| 90 | + |
| 91 | + <build> |
| 92 | + <resources> |
| 93 | + <resource> |
| 94 | + <directory>${basedir}</directory> |
| 95 | + <targetPath>META-INF</targetPath> |
| 96 | + <includes> |
| 97 | + <include>LICENSE</include> |
| 98 | + <include>NOTICE</include> |
| 99 | + </includes> |
| 100 | + </resource> |
| 101 | + <resource> |
| 102 | + <directory>${project.build.sourceDirectory}</directory> |
| 103 | + <excludes> |
| 104 | + <exclude>**/*.java</exclude> |
| 105 | + <exclude>**/pom.properties</exclude> |
| 106 | + </excludes> |
| 107 | + </resource> |
| 108 | + <resource> |
| 109 | + <directory>${project.build.sourceDirectory}</directory> |
| 110 | + <filtering>true</filtering> |
| 111 | + <includes> |
| 112 | + <include>**/pom.properties</include> |
| 113 | + </includes> |
| 114 | + </resource> |
| 115 | + </resources> |
| 116 | + <testResources> |
| 117 | + <testResource> |
| 118 | + <directory>${project.build.testSourceDirectory}</directory> |
| 119 | + <excludes> |
| 120 | + <exclude>**/*.java</exclude> |
| 121 | + </excludes> |
| 122 | + </testResource> |
| 123 | + </testResources> |
| 124 | + <plugins> |
| 125 | + <plugin> |
| 126 | + <groupId>org.codehaus.mojo</groupId> |
| 127 | + <artifactId>appassembler-maven-plugin</artifactId> |
| 128 | + <version>1.1.1</version> |
| 129 | + <executions> |
| 130 | + <execution> |
| 131 | + <phase>package</phase> |
| 132 | + <goals> |
| 133 | + <goal>assemble</goal> |
| 134 | + </goals> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + <configuration> |
| 138 | + <repositoryLayout>flat</repositoryLayout> |
| 139 | + <repositoryName>lib</repositoryName> |
| 140 | + <extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments> |
| 141 | + <binFileExtensions> |
| 142 | + <windows>.cmd</windows> |
| 143 | + </binFileExtensions> |
| 144 | + <programs> |
| 145 | + <program> |
| 146 | + <mainClass>org.apache.ibatis.migration.Migrator</mainClass> |
| 147 | + <name>migrate</name> |
| 148 | + </program> |
| 149 | + </programs> |
| 150 | + </configuration> |
| 151 | + </plugin> |
| 152 | + <plugin> |
| 153 | + <groupId>org.apache.maven.plugins</groupId> |
| 154 | + <artifactId>maven-assembly-plugin</artifactId> |
| 155 | + <executions> |
| 156 | + <execution> |
| 157 | + <goals> |
| 158 | + <goal>single</goal> |
| 159 | + </goals> |
| 160 | + <phase>package</phase> |
| 161 | + <configuration> |
| 162 | + <descriptors> |
| 163 | + <descriptor>${basedir}/src/main/assembly/bundle.xml</descriptor> |
| 164 | + </descriptors> |
| 165 | + </configuration> |
| 166 | + </execution> |
| 167 | + </executions> |
| 168 | + </plugin> |
| 169 | + |
| 170 | + </plugins> |
| 171 | + </build> |
| 172 | + |
| 173 | +</project> |
0 commit comments