Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2010-01-12 19:41:35 +0000
committerShawn O. Pearce2010-01-12 19:46:55 +0000
commit20b4d4740aea3b0f51063211f3b69261ced0a5d9 (patch)
treec3ac7a8ab2cc47b6293038399f696289d2a46a7a /pom.xml
parentcbab08fb2885b3024e7786e7665efad2b0579310 (diff)
downloadjgit-20b4d4740aea3b0f51063211f3b69261ced0a5d9.tar.gz
jgit-20b4d4740aea3b0f51063211f3b69261ced0a5d9.tar.xz
jgit-20b4d4740aea3b0f51063211f3b69261ced0a5d9.zip
Finish removing Apache Felix maven-bundle-plugin
Since Robin reverted using the maven-bundle-plugin to produce the OSGi manifest, there is no reason for us to reference it from our build process anymore. Also, when Robin reverted the to the Eclipse way of doing things, we failed to update the ignore files to ignore our generated files but not ignore our tracked .classpath. Finally, we cannot delete the MANIFEST.MF file during a Maven build, as this is once again a source file. Change-Id: I53f77f2002cb4285f728968829560e835651e188 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml36
1 files changed, 0 insertions, 36 deletions
diff --git a/pom.xml b/pom.xml
index b9e00027e1..a5887288c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -141,28 +141,6 @@
<pluginManagement>
<plugins>
<plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>2.0.1</version>
- <configuration>
- <manifestLocation>META-INF</manifestLocation>
- <instructions>
- <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
- <Bundle-DocURL>${jgit-url}</Bundle-DocURL>
- <Bundle-Vendor>%provider_name</Bundle-Vendor>
- <Bundle-Name>%plugin_name</Bundle-Name>
- <Bundle-Description>%plugin_description</Bundle-Description>
- <Bundle-Localization>plugin</Bundle-Localization>
- <Bundle-Copyright>${jgit-copyright}</Bundle-Copyright>
- <Bundle-License>http://www.eclipse.org/org/documents/edl-v10.php</Bundle-License>
- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
- <Bundle-Version>$(replace;$(project.version);-SNAPSHOT;"").$(tstamp;yyyyMMdd-HHmm)</Bundle-Version>
- <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
- </instructions>
- </configuration>
- </plugin>
-
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
@@ -238,20 +216,6 @@
</plugin>
<plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <configuration>
- <filesets>
- <fileset>
- <directory>${basedir}</directory>
- <includes>
- <include>META-INF/MANIFEST.MF</include>
- </includes>
- </fileset>
- </filesets>
- </configuration>
- </plugin>
-
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>

Back to the top