
The branch, master has been updated via c835e6c2babc39cd5c935b00a84d7d4bc796cce0 (commit) from 257f4868ae545076338e9c18069c9e3aebf770d7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.qos.ch/gitweb/?p=cal10n.git;a=commit;h=c835e6c2babc39cd5c935b00a8... http://github.com/ceki/cal10n/commit/c835e6c2babc39cd5c935b00a84d7d4bc796cce... commit c835e6c2babc39cd5c935b00a84d7d4bc796cce0 Author: Ceki Gulcu <ceki@qos.ch> Date: Wed Oct 28 18:15:07 2009 +0100 - Fixed CAL-9 by adding OSGI headers to cal10n-api MANIFEST file - Bumped version number to 0.7.2 diff --git a/cal10n-api/pom.xml b/cal10n-api/pom.xml index 3a31ffe..1e66469 100644 --- a/cal10n-api/pom.xml +++ b/cal10n-api/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.cal10n</groupId> <artifactId>cal10n-parent</artifactId> - <version>0.7.1-SNAPSHOT</version> + <version>0.7.2</version> </parent> <modelVersion>4.0.0</modelVersion> @@ -16,4 +16,33 @@ <dependencies> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifestEntries> + <Bundle-Version>${project.version}</Bundle-Version> + <Bundle-Description>${project.description}</Bundle-Description> + <Implementation-Version>${project.version}</Implementation-Version> + </manifestEntries> + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> + </archive> + </configuration> + <executions> + <execution> + <id>bundle-test-jar</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> \ No newline at end of file diff --git a/cal10n-api/src/main/resources/META-INF/MANIFEST.MF b/cal10n-api/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 0000000..ddc930d --- /dev/null +++ b/cal10n-api/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,7 @@ +Implementation-Title: cal10n-api +Bundle-ManifestVersion: 2 +Bundle-SymbolicName: cal10n.api +Bundle-Name: cal10n-api +Bundle-Vendor: qos.ch +Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Export-Package: ch.qos.cal10n;version=${project.version} \ No newline at end of file diff --git a/cal10n-api/src/test/java/ch/qos/cal10n/MessageConveyorTest.java b/cal10n-api/src/test/java/ch/qos/cal10n/MessageConveyorTest.java index f135751..8c43211 100644 --- a/cal10n-api/src/test/java/ch/qos/cal10n/MessageConveyorTest.java +++ b/cal10n-api/src/test/java/ch/qos/cal10n/MessageConveyorTest.java @@ -106,7 +106,6 @@ public class MessageConveyorTest { } } - @Test public void minimal() { MessageConveyor mc = new MessageConveyor(Locale.ENGLISH); diff --git a/cal10n-site/pom.xml b/cal10n-site/pom.xml index a52bcb7..031679c 100644 --- a/cal10n-site/pom.xml +++ b/cal10n-site/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.cal10n</groupId> <artifactId>cal10n-parent</artifactId> - <version>0.7.1-SNAPSHOT</version> + <version>0.7.2</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/cal10n-site/src/site/pages/news.html b/cal10n-site/src/site/pages/news.html index 7752a87..4dbfedb 100644 --- a/cal10n-site/src/site/pages/news.html +++ b/cal10n-site/src/site/pages/news.html @@ -26,6 +26,13 @@ the <a href="http://www.qos.ch/mailman/listinfo/announce">QOS.ch announce</a> mailing list. </p> + <hr width="80%" align="center" /> + + <h3>28th of October 2009 - Release of CAL10N version 0.7.2</h3> + + <p>Added OSGi bundle headers to cal10n-api as requested by Peter + Muir in <a href="http://jira.qos.ch/browse/CAL-9">CAL-9</a>. + </p> <hr width="80%" align="center" /> diff --git a/maven-cal10n-plugin-smoke/pom.xml b/maven-cal10n-plugin-smoke/pom.xml index 8d6f4ab..8321dcf 100644 --- a/maven-cal10n-plugin-smoke/pom.xml +++ b/maven-cal10n-plugin-smoke/pom.xml @@ -4,7 +4,7 @@ <parent> <groupId>ch.qos.cal10n</groupId> <artifactId>cal10n-parent</artifactId> - <version>0.7.1-SNAPSHOT</version> + <version>0.7.2</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/maven-cal10n-plugin/pom.xml b/maven-cal10n-plugin/pom.xml index 3e85799..7d9494a 100644 --- a/maven-cal10n-plugin/pom.xml +++ b/maven-cal10n-plugin/pom.xml @@ -8,7 +8,7 @@ <parent> <artifactId>cal10n-parent</artifactId> <groupId>ch.qos.cal10n</groupId> - <version>0.7.1-SNAPSHOT</version> + <version>0.7.2</version> </parent> <groupId>ch.qos.cal10n.plugins</groupId> diff --git a/pom.xml b/pom.xml index 76950b6..958884a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ <groupId>ch.qos.cal10n</groupId> <artifactId>cal10n-parent</artifactId> <packaging>pom</packaging> - <version>0.7.1-SNAPSHOT</version> + <version>0.7.2</version> <name>Compiler assisted localization library (CAL10N) - Parent</name> <url>http://cal10n.qos.ch</url> ----------------------------------------------------------------------- Summary of changes: cal10n-api/pom.xml | 31 +++++++++++++++++++- cal10n-api/src/main/resources/META-INF/MANIFEST.MF | 7 ++++ .../java/ch/qos/cal10n/MessageConveyorTest.java | 1 - cal10n-site/pom.xml | 2 +- cal10n-site/src/site/pages/news.html | 7 ++++ maven-cal10n-plugin-smoke/pom.xml | 2 +- maven-cal10n-plugin/pom.xml | 2 +- pom.xml | 2 +- 8 files changed, 48 insertions(+), 6 deletions(-) create mode 100644 cal10n-api/src/main/resources/META-INF/MANIFEST.MF hooks/post-receive -- Compiler assisted localization library