Making VERSION.txt automatically update itself in the jetty-distribution tarball
This commit is contained in:
parent
d8d5414f64
commit
b34ccc5915
|
@ -1,3 +1,5 @@
|
|||
jetty-7.5.0-SNAPSHOT
|
||||
|
||||
jetty-7.5.0.RC1 - 19 August 2011
|
||||
+ 276670 SLF4J loggers show correct location information
|
||||
+ 335001 Eliminate expected exceptions from log when running in JBoss
|
||||
|
|
|
@ -129,7 +129,6 @@
|
|||
</fileset>
|
||||
</copy>
|
||||
|
||||
<copy file="../VERSION.txt" todir="${assembly-directory}" />
|
||||
<chmod dir="${assembly-directory}/bin" perm="755" includes="**/*.sh" />
|
||||
</tasks>
|
||||
</configuration>
|
||||
|
@ -307,6 +306,16 @@
|
|||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-project</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<classifier>version</classifier>
|
||||
<type>txt</type>
|
||||
<overWrite>true</overWrite>
|
||||
<outputDirectory>${assembly-directory}/</outputDirectory>
|
||||
<destFileName>VERSION.txt</destFileName>
|
||||
</artifactItem>
|
||||
<artifactItem>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-util</artifactId>
|
||||
|
|
Loading…
Reference in New Issue