diff options
author | Chris Aniszczyk <caniszczyk@gmail.com> | 2011-01-21 10:32:22 -0500 |
---|---|---|
committer | Code Review <codereview-daemon@eclipse.org> | 2011-01-21 10:32:22 -0500 |
commit | f21495255211042c6fcc4cc6f7f5af2bf750f647 (patch) | |
tree | 47daa66a5927ee03be299705493c8a4012b9fda9 | |
parent | c62882191f5c9cc30a7a1cc8a1ad67c368090ceb (diff) | |
parent | ef08017ecc70594d079b672919a0e6f0f525819b (diff) | |
download | jgit-f21495255211042c6fcc4cc6f7f5af2bf750f647.tar.gz jgit-f21495255211042c6fcc4cc6f7f5af2bf750f647.zip |
Merge "Build http.server source JAR"
-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> |