File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 249
249
</plugins >
250
250
</build >
251
251
</profile >
252
+ <profile >
253
+ <id >update-doc</id >
254
+ <activation >
255
+ <os >
256
+ <family >unix</family >
257
+ </os >
258
+ </activation >
259
+ <build >
260
+ <plugins >
261
+ <plugin >
262
+ <groupId >org.codehaus.mojo</groupId >
263
+ <artifactId >exec-maven-plugin</artifactId >
264
+ <version >3.0.0</version >
265
+ <executions >
266
+ <execution >
267
+ <id >update_readme</id >
268
+ <goals >
269
+ <goal >exec</goal >
270
+ </goals >
271
+ <phase >compile</phase >
272
+ <configuration >
273
+ <executable >sed</executable >
274
+ <arguments >
275
+ <argument >-i</argument >
276
+ <argument >s/\(:version:\) \(.*\)/\1 ${project.version} /g</argument >
277
+ <argument >readme.adoc</argument >
278
+ </arguments >
279
+ </configuration >
280
+ </execution >
281
+ </executions >
282
+ <inherited >false</inherited >
283
+ </plugin >
284
+ </plugins >
285
+ </build >
286
+ </profile >
252
287
</profiles >
253
288
254
289
</project >
You can’t perform that action at this time.
0 commit comments