|
63 | 63 |
|
64 | 64 | <properties> |
65 | 65 | <!-- seata version --> |
66 | | - <revision>1.5.0</revision> |
| 66 | + <revision>1.5.2-SNAPSHOT</revision> |
67 | 67 |
|
68 | 68 | <!-- Compiler settings properties --> |
69 | 69 | <java.version>1.8</java.version> |
|
77 | 77 |
|
78 | 78 | <!-- Maven plugin versions --> |
79 | 79 | <!-- Build --> |
80 | | - <flatten-maven-plugin.version>1.1.0</flatten-maven-plugin.version> |
| 80 | + <easyj-maven-plugin.version>0.5.6</easyj-maven-plugin.version> |
81 | 81 | <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> |
82 | 82 | <!-- Compiler --> |
83 | 83 | <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
|
165 | 165 | <artifactId>license-maven-plugin</artifactId> |
166 | 166 | <version>${mojo-license-maven-plugin.version}</version> |
167 | 167 | </plugin> |
| 168 | + <plugin> |
| 169 | + <groupId>icu.easyj.maven.plugins</groupId> |
| 170 | + <artifactId>easyj-maven-plugin</artifactId> |
| 171 | + <version>${easyj-maven-plugin.version}</version> |
| 172 | + <!-- This goal can replace flatten-maven-plugin to flatten the pom, and replace '${revision}' to the actual version. --> |
| 173 | + <executions> |
| 174 | + <execution> |
| 175 | + <id>simplify-pom</id> |
| 176 | + <goals> |
| 177 | + <goal>simplify-pom</goal> |
| 178 | + </goals> |
| 179 | + </execution> |
| 180 | + </executions> |
| 181 | + <configuration> |
| 182 | + <simplifiedPomFileName>.flattened-pom.xml</simplifiedPomFileName> |
| 183 | + </configuration> |
| 184 | + </plugin> |
168 | 185 | </plugins> |
169 | 186 | </pluginManagement> |
170 | 187 |
|
|
224 | 241 | <fileset> |
225 | 242 | <directory>./</directory> |
226 | 243 | <includes> |
227 | | - <include>*-pom*.xml</include> |
| 244 | + <include>*-pom.xml</include> |
228 | 245 | <include>**/db_store/**</include> |
229 | 246 | <include>**/sessionStore/**</include> |
230 | 247 | <include>**/root.data</include> |
|
234 | 251 | </filesets> |
235 | 252 | </configuration> |
236 | 253 | </plugin> |
237 | | - <!-- Flatten --> |
| 254 | + <!-- EasyJ --> |
238 | 255 | <plugin> |
239 | | - <groupId>org.codehaus.mojo</groupId> |
240 | | - <artifactId>flatten-maven-plugin</artifactId> |
241 | | - <version>${flatten-maven-plugin.version}</version> |
242 | | - <configuration> |
243 | | - <updatePomFile>true</updatePomFile> |
244 | | - <flattenMode>resolveCiFriendliesOnly</flattenMode> |
245 | | - </configuration> |
246 | | - <executions> |
247 | | - <execution> |
248 | | - <id>flatten</id> |
249 | | - <phase>process-resources</phase> |
250 | | - <goals> |
251 | | - <goal>flatten</goal> |
252 | | - </goals> |
253 | | - </execution> |
254 | | - <execution> |
255 | | - <id>flatten.clean</id> |
256 | | - <phase>clean</phase> |
257 | | - <goals> |
258 | | - <goal>clean</goal> |
259 | | - </goals> |
260 | | - </execution> |
261 | | - </executions> |
| 256 | + <groupId>icu.easyj.maven.plugins</groupId> |
| 257 | + <artifactId>easyj-maven-plugin</artifactId> |
262 | 258 | </plugin> |
263 | 259 | <!-- Enforcer --> |
264 | 260 | <plugin> |
|
0 commit comments