|
4 | 4 | <groupId>org.liquibase</groupId>
|
5 | 5 | <artifactId>liquibase-parent-pom</artifactId>
|
6 | 6 | <name>Liquibase Parent POM</name>
|
7 |
| - <version>0.5.0-SNAPSHOT</version> |
| 7 | + <version>0.4.3-SNAPSHOT</version> |
8 | 8 | <description>Liquibase Parent POM for all Extensions</description>
|
9 | 9 | <url>https://github.com/liquibase/liquibase-parent-pom</url>
|
10 | 10 | <packaging>pom</packaging>
|
|
35 | 35 |
|
36 | 36 | <properties>
|
37 | 37 | <!-- Project build properties -->
|
| 38 | + <buildNumber>${env.GITHUB_RUN_ID}</buildNumber> |
38 | 39 | <maven.compiler.source>1.8</maven.compiler.source>
|
39 | 40 | <maven.compiler.target>1.8</maven.compiler.target>
|
40 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
52 | 53 | <sonar.projectDescription>${project.description}</sonar.projectDescription>
|
53 | 54 | <!-- Plugin versions -->
|
54 | 55 | <assertj.version>3.24.2</assertj.version>
|
| 56 | + <buildnumber-maven-plugin.version>3.2.0</buildnumber-maven-plugin.version> |
55 | 57 | <build-helper-maven-plugin.version>3.4.0</build-helper-maven-plugin.version>
|
56 | 58 | <commons-io.version>2.15.1</commons-io.version>
|
57 | 59 | <copy-rename-maven-plugin.version>1.0.1</copy-rename-maven-plugin.version>
|
|
439 | 441 | <artifactId>build-helper-maven-plugin</artifactId>
|
440 | 442 | <version>${build-helper-maven-plugin.version}</version>
|
441 | 443 | </plugin>
|
| 444 | + <plugin> |
| 445 | + <groupId>org.codehaus.mojo</groupId> |
| 446 | + <artifactId>buildnumber-maven-plugin</artifactId> |
| 447 | + <version>${buildnumber-maven-plugin.version}</version> |
| 448 | + <executions> |
| 449 | + <execution> |
| 450 | + <phase>validate</phase> |
| 451 | + <goals> |
| 452 | + <goal>create</goal> |
| 453 | + </goals> |
| 454 | + </execution> |
| 455 | + </executions> |
| 456 | + <configuration> |
| 457 | + <doCheck>false</doCheck> |
| 458 | + <doUpdate>false</doUpdate> |
| 459 | + <timestampFormat>${maven.build.timestamp.format}</timestampFormat> |
| 460 | + </configuration> |
| 461 | + </plugin> |
442 | 462 | </plugins>
|
443 | 463 | </build>
|
444 | 464 |
|
|
0 commit comments