diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2020-09-04 10:34:58 -0400 |
---|---|---|
committer | Singal, Kapil (ks220y) <ks220y@att.com> | 2020-09-04 10:37:56 -0400 |
commit | da2d976b866b2b32fdfc1d6fae9a5b118339fcb9 (patch) | |
tree | 64776783306e5ef6993f8c0697270655353e7014 /odlparent/setup | |
parent | f3009d8c722203619d14cf9205f82a2898f3aa6f (diff) |
Overriding git-commit-id-plugin
Issue-ID: CCSDK-2734
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: I57964c912f17bf0c7dfe060a469affbf82486d35
Diffstat (limited to 'odlparent/setup')
-rwxr-xr-x | odlparent/setup/pom.xml | 1 | ||||
-rwxr-xr-x | odlparent/setup/src/main/resources/pom-template.xml | 14 |
2 files changed, 13 insertions, 2 deletions
diff --git a/odlparent/setup/pom.xml b/odlparent/setup/pom.xml index 6137543d..c14c893e 100755 --- a/odlparent/setup/pom.xml +++ b/odlparent/setup/pom.xml @@ -231,7 +231,6 @@ <configuration> <sourceFile>../binding-parent/pom-template.xml</sourceFile> <destinationFile>../binding-parent/pom.xml</destinationFile> - </configuration> </execution> <execution> diff --git a/odlparent/setup/src/main/resources/pom-template.xml b/odlparent/setup/src/main/resources/pom-template.xml index d6a9b46a..94b7423f 100755 --- a/odlparent/setup/src/main/resources/pom-template.xml +++ b/odlparent/setup/src/main/resources/pom-template.xml @@ -825,7 +825,7 @@ <message>Please always use mockito-core instead of mockito-all (see https://bugs.opendaylight.org/show_bug.cgi?id=7662), and spotbugs:annotations instead of findbugs:annotations</message> <excludes> <exclude>org.mockito:mockito-all</exclude> -<!-- <exclude>com.google.code.findbugs:annotations</exclude> --> + <!-- <exclude>com.google.code.findbugs:annotations</exclude> --> </excludes> </bannedDependencies> </rules> @@ -834,6 +834,18 @@ </execution> </executions> </plugin> + <plugin> + <groupId>pl.project13.maven</groupId> + <artifactId>git-commit-id-plugin</artifactId> + <version>4.0.0</version> + <configuration> + <commitIdGenerationMode>full</commitIdGenerationMode> + <includeOnlyProperties> + <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> + <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> + </includeOnlyProperties> + </configuration> + </plugin> </plugins> </build> |