Merge branch 'release/1.0.5-M4' into develop

This commit is contained in:
Taro L. Saito 2013-03-20 00:00:48 +09:00
commit bd9d84b92f
1 changed files with 5 additions and 5 deletions

10
pom.xml
View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.0.5-M4-SNAPSHOT</version>
<version>1.0.5-M4</version>
<name>Snappy for Java</name>
<description>snappy-java: A fast compression/decompression library</description>
<packaging>bundle</packaging>
@ -145,7 +145,6 @@
<charset>UTF-8</charset>
<locale>en_US</locale>
<show>public</show>
<stylesheetfile>stylesheet.css</stylesheetfile>
</configuration>
</plugin>
@ -173,10 +172,10 @@
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<manifestLocation>${project.build.directory}/META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${pproject.name}</Bundle-Name>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Activator>org.xerial.snappy.SnappyBundleActivator</Bundle-Activator>
<Export-Package>org.xerial.snappy</Export-Package>
@ -208,10 +207,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<index>true</index>
<manifestFile>META-INF/MANIFEST.MF</manifestFile>
<manifestFile>${project.build.directory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>