1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Description: remove maven plugin git-commit-id-plugin
This Maven plugin is used upstream to automatically map the output of "git
describe" into a property file "git.properties". This is used by WadC to
establish its version, which it writes out into WADCSRC header lumps when
generating WAD files.
.
For the Debian package build, we generate the "git.properties" file using
debian/rules instead.
Last-Update: 2022-09-22
diff --git a/pom.xml b/pom.xml
index 16ea8dd..b4cc817 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,25 +33,6 @@
<target>8</target>
</configuration>
</plugin>
- <plugin>
- <groupId>pl.project13.maven</groupId>
- <artifactId>git-commit-id-plugin</artifactId>
- <version>2.1.15</version>
- <executions>
- <execution>
- <goals>
- <goal>revision</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <generateGitPropertiesFile>true</generateGitPropertiesFile>
- <generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
- <includeOnlyProperties>
- <includeOnlyProperty>^git.commit.id.describe$</includeOnlyProperty>
- </includeOnlyProperties>
- </configuration>
- </plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
|