|
@@ -120,50 +120,48 @@
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
<plugin>
|
|
|
- <groupId>pl.project13.maven</groupId>
|
|
|
- <artifactId>git-commit-id-plugin</artifactId>
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
+ <id>copy-resources</id>
|
|
|
+ <phase>package</phase>
|
|
|
<goals>
|
|
|
- <goal>revision</goal>
|
|
|
+ <goal>copy-resources</goal>
|
|
|
</goals>
|
|
|
+ <configuration>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources/</directory>
|
|
|
+ <includes>
|
|
|
+ <include>**/*.yml</include>
|
|
|
+ </includes>
|
|
|
+ </resource>
|
|
|
+ <resource>
|
|
|
+ <directory>${project.build.directory}</directory>
|
|
|
+ <includes>
|
|
|
+ <include>**/version.txt</include>
|
|
|
+ </includes>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ <outputDirectory>${project.build.directory}/config</outputDirectory>
|
|
|
+ </configuration>
|
|
|
</execution>
|
|
|
- </executions>
|
|
|
- <configuration>
|
|
|
- <verbose>true</verbose>
|
|
|
- <dateFormat>yyyyMMddHHmm</dateFormat>
|
|
|
- <generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
-
|
|
|
- <generateGitPropertiesFilename>target/git.properties</generateGitPropertiesFilename>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
-
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-assembly-plugin</artifactId>
|
|
|
- <executions>
|
|
|
+
|
|
|
<execution>
|
|
|
- <id>make-assembly</id>
|
|
|
-
|
|
|
+ <id>copy-version</id>
|
|
|
<phase>package</phase>
|
|
|
<goals>
|
|
|
- <goal>single</goal>
|
|
|
+ <goal>copy-resources</goal>
|
|
|
</goals>
|
|
|
<configuration>
|
|
|
- <finalName>
|
|
|
- ${project.artifactId}_${git.commit.time}_git_${git.branch}_${git.commit.id.abbrev}
|
|
|
- </finalName>
|
|
|
-
|
|
|
- <appendAssemblyId>false</appendAssemblyId>
|
|
|
-
|
|
|
-
|
|
|
- <descriptors>
|
|
|
- <descriptor>src/script/zip.xml</descriptor>
|
|
|
- </descriptors>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/script</directory>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ <outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
</configuration>
|
|
|
</execution>
|
|
|
</executions>
|