diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2011-01-18 15:59:15 -0800 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2011-01-20 14:46:27 -0800 |
commit | ef08017ecc70594d079b672919a0e6f0f525819b (patch) | |
tree | 467e7f2eb41651179d06c3fc7e884d50510b7c3c | |
parent | 67e176e529877f7dad0356019ab0ebec6888739a (diff) | |
download | jgit-ef08017ecc70594d079b672919a0e6f0f525819b.tar.gz jgit-ef08017ecc70594d079b672919a0e6f0f525819b.zip |
Build http.server source JAR
Change-Id: I459de081fd518abfa50dd812c68eed4d1c7f8a0b
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r-- | org.eclipse.jgit.http.server/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.server/pom.xml b/org.eclipse.jgit.http.server/pom.xml index 53e9993f82..d3521d07a0 100644 --- a/org.eclipse.jgit.http.server/pom.xml +++ b/org.eclipse.jgit.http.server/pom.xml @@ -97,6 +97,26 @@ <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <inherited>true</inherited> + <executions> + <execution> + <id>attach-sources</id> + <phase>process-classes</phase> + <goals> + <goal>jar</goal> + </goals> + <configuration> + <archive> + <manifestFile>${source-bundle-manifest}</manifestFile> + </archive> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> |