diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2022-06-28 15:02:53 +0100 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2022-06-28 15:02:53 +0100 |
commit | 720425db47801f0b8ecccd76ebea43f1e217b6fd (patch) | |
tree | 5b4227ebe652406f8808f2aea9453553f676d3a2 /packages/policy-distribution-docker/pom.xml | |
parent | 81a6c5c2ca26915edf34042f949b1e7454f36d53 (diff) |
OCI image spec labels for distribution
Issue-ID: POLICY-4260
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I9c1e3e48c80298330177e310f73b4473fba8f436
Diffstat (limited to 'packages/policy-distribution-docker/pom.xml')
-rw-r--r-- | packages/policy-distribution-docker/pom.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/policy-distribution-docker/pom.xml b/packages/policy-distribution-docker/pom.xml index 3a5c36ba..79ce0361 100644 --- a/packages/policy-distribution-docker/pom.xml +++ b/packages/policy-distribution-docker/pom.xml @@ -68,6 +68,30 @@ </plugin> <plugin> + <groupId>io.github.git-commit-id</groupId> + <artifactId>git-commit-id-maven-plugin</artifactId> + <version>5.0.0</version> + <executions> + <execution> + <id>get-the-git-infos</id> + <goals> + <goal>revision</goal> + </goals> + <phase>initialize</phase> + </execution> + </executions> + <configuration> + <skipPoms>false</skipPoms> + <generateGitPropertiesFile>true</generateGitPropertiesFile> + <includeOnlyProperties> + <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> + <includeOnlyProperty>^git.commit.id.abbrev$</includeOnlyProperty> + </includeOnlyProperties> + <commitIdGenerationMode>full</commitIdGenerationMode> + </configuration> + </plugin> + + <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> |