Mercurial > dive4elements > framework
comparison artifacts/pom.xml @ 99:0efa3e8e46d4
Write revision to MANIFEST files while creating jar archives.
artifacts/trunk@1213 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 14 Jun 2010 21:23:13 +0000 |
parents | 86d2a843e588 |
children | 10d726907419 |
comparison
equal
deleted
inserted
replaced
98:a24ab98f858d | 99:0efa3e8e46d4 |
---|---|
5 <artifactId>artifacts</artifactId> | 5 <artifactId>artifacts</artifactId> |
6 <packaging>jar</packaging> | 6 <packaging>jar</packaging> |
7 <version>1.0-SNAPSHOT</version> | 7 <version>1.0-SNAPSHOT</version> |
8 <name>artifacts</name> | 8 <name>artifacts</name> |
9 <url>http://maven.apache.org</url> | 9 <url>http://maven.apache.org</url> |
10 <scm> | |
11 <connection>scm:svn:svn+ssh://${user}@thoe.intevation.de/home/projects/Geospatial/bsh-generischer-viewer/Material/SVN/artifacts/artifacts</connection> | |
12 <developerConnection>scm:svn:svn+ssh://${user}@thoe.intevation.de/home/projects/Geospatial/bsh-generischer-viewer/Material/SVN/artifacts/artifacts</developerConnection> | |
13 <url>scm:svn:svn+ssh://${user}@thoe.intevation.de/home/projects/Geospatial/bsh-generischer-viewer/Material/SVN/artifacts/artifacts</url> | |
14 </scm> | |
10 <properties> | 15 <properties> |
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 </properties> | 17 </properties> |
18 <build> | |
19 <plugins> | |
20 <plugin> | |
21 <groupId>org.codehaus.mojo</groupId> | |
22 <artifactId>buildnumber-maven-plugin</artifactId> | |
23 <executions> | |
24 <execution> | |
25 <phase>validate</phase> | |
26 <goals> | |
27 <goal>create</goal> | |
28 </goals> | |
29 </execution> | |
30 </executions> | |
31 <configuration> | |
32 <doCheck>true</doCheck> | |
33 <doUpdate>false</doUpdate> | |
34 </configuration> | |
35 </plugin> | |
36 <plugin> | |
37 <groupId>org.apache.maven.plugins</groupId> | |
38 <artifactId>maven-jar-plugin</artifactId> | |
39 <configuration> | |
40 <archive> | |
41 <manifest> | |
42 <addDefaultImplementationEntries>true</addDefaultImplementationEntries> | |
43 </manifest> | |
44 <manifestEntries> | |
45 <SCM-Revision>${buildNumber}</SCM-Revision> | |
46 </manifestEntries> | |
47 </archive> | |
48 </configuration> | |
49 </plugin> | |
50 </plugins> | |
51 </build> | |
13 <dependencies> | 52 <dependencies> |
14 </dependencies> | 53 </dependencies> |
15 </project> | 54 </project> |