diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2012-05-25 01:37:04 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2012-05-25 01:37:04 +0000 |
commit | 2012b9931dec2e5fd9afc8804fe016667fc58285 (patch) | |
tree | 62a31627c8206bf9760f365be4cbb1f5f94c4b79 | |
parent | 6f2b4edfebf72dc7a2dc1df16ce628112d66de99 (diff) | |
download | jackcess-2012b9931dec2e5fd9afc8804fe016667fc58285.tar.gz jackcess-2012b9931dec2e5fd9afc8804fe016667fc58285.zip |
add osgi header information to the jar manifest (fixes issue 3523179)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@625 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | pom.xml | 28 | ||||
-rw-r--r-- | src/changes/changes.xml | 5 |
2 files changed, 33 insertions, 0 deletions
@@ -91,6 +91,24 @@ </pluginManagement> <plugins> <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + </instructions> + </configuration> + <executions> + <execution> + <id>bundle-manifest</id> + <phase>process-classes</phase> + <goals> + <goal>manifest</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> @@ -122,11 +140,21 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> + </archive> + </configuration> <executions> <execution> + <id>build-test-jar</id> <goals> <goal>test-jar</goal> </goals> + <configuration> + <archive combine.self="override"> + </archive> + </configuration> </execution> </executions> </plugin> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 7e8f5ac..8f2d1d4 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -4,6 +4,11 @@ <author email="javajedi@users.sf.net">Tim McCune</author> </properties> <body> + <release version="1.2.8" date="TBD"> + <action dev="jahlborn" type="update" issue="3523179"> + Add osgi header information to the manifest. + </action> + </release> <release version="1.2.7" date="2012-04-02"> <action dev="jahlborn" type="update" issue="3479560"> Add initial support for linked tables. Linked tables will now be |