[ 
https://issues.apache.org/jira/browse/FELIX-3268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Valentin Valchev reopened FELIX-3268:
-------------------------------------


The new native2ascii-maven-plugin actually does nothing. So localization is 
missing. My own plugins (build with ant) are localized correctly, but 
webconsole - doesn't show in the language I choose.

I looked at the jar file and it seems, that doesn't include any extra resources 
besides bundle.properties
                
> Cannot build webconsole and webconsole-plugins with JDK 7
> ---------------------------------------------------------
>
>                 Key: FELIX-3268
>                 URL: https://issues.apache.org/jira/browse/FELIX-3268
>             Project: Felix
>          Issue Type: Bug
>          Components: Web Console
>         Environment: Debian unstable x86_64, JDK 7 from 
> http://jdk7.java.net/download.html, Maven 3.0.3
>            Reporter: Lionel Debroux
>            Assignee: Felix Meschberger
>              Labels: patch
>             Fix For: webconsole-upnp-plugin-1.0.2, 
> webconsole-shell-plugin-1.0.0, webconsole-obr-plugin-1.0.0, 
> webconsole-ds-plugin-1.0.0, webconsole-deployment-admin-plugin-1.0.0, 
> webconsole-3.2.0, webconsole-event-plugin-1.0.4
>
>
> A search in JIRA returned no match for "native2ascii" and no relevant match 
> for "native", so I'm creating an issue.
> When trying to build Felix SVN HEAD with JDK 7, the build process stops when 
> it fails to invoke native2ascii in webconsole.
> It seems that there was a change between JDK 6 and JDK 7, and the 1.0-alpha-1 
> version of org.codehaus.mojo:native2ascii-maven-plugin in multiple POMs 
> cannot handle it. However, version 1.0-beta-1 (I obtained that version number 
> by removing the "version" parameter entirely) can cope with JDK 7.
> The patch below fixes the build problem in webconsole & webconsole-plugins:
> diff --git a/webconsole-plugins/deppack/pom.xml 
> b/webconsole-plugins/deppack/pom.xml
> index 0c764e6..e576a57 100644
> --- a/webconsole-plugins/deppack/pom.xml
> +++ b/webconsole-plugins/deppack/pom.xml
> @@ -40,7 +40,7 @@
>                       <plugin>
>                               <groupId>org.codehaus.mojo</groupId>
>                               
> <artifactId>native2ascii-maven-plugin</artifactId>
> -                             <version>1.0-alpha-1</version>
> +                             <version>1.0-beta-1</version>
>                               <executions>
>                                       <execution>
>                                               <goals>
> diff --git a/webconsole-plugins/ds/pom.xml b/webconsole-plugins/ds/pom.xml
> index 40a3224..338f306 100644
> --- a/webconsole-plugins/ds/pom.xml
> +++ b/webconsole-plugins/ds/pom.xml
> @@ -40,7 +40,7 @@
>              <plugin>
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>native2ascii-maven-plugin</artifactId>
> -                <version>1.0-alpha-1</version>
> +                <version>1.0-beta-1</version>
>                  <executions>
>                      <execution>
>                          <goals>
> diff --git a/webconsole-plugins/event/pom.xml 
> b/webconsole-plugins/event/pom.xml
> index b257032..2375eab 100644
> --- a/webconsole-plugins/event/pom.xml
> +++ b/webconsole-plugins/event/pom.xml
> @@ -48,7 +48,7 @@
>              <plugin>
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>native2ascii-maven-plugin</artifactId>
> -                <version>1.0-alpha-1</version>
> +                <version>1.0-beta-1</version>
>                  <executions>
>                      <execution>
>                          <goals>
> diff --git a/webconsole-plugins/obr/pom.xml b/webconsole-plugins/obr/pom.xml
> index c4a88f2..3854ca3 100644
> --- a/webconsole-plugins/obr/pom.xml
> +++ b/webconsole-plugins/obr/pom.xml
> @@ -40,7 +40,7 @@
>                       <plugin>
>                               <groupId>org.codehaus.mojo</groupId>
>                               
> <artifactId>native2ascii-maven-plugin</artifactId>
> -                             <version>1.0-alpha-1</version>
> +                             <version>1.0-beta-1</version>
>                               <executions>
>                                       <execution>
>                                               <goals>
> diff --git a/webconsole-plugins/shell/pom.xml 
> b/webconsole-plugins/shell/pom.xml
> index 661d3cd..7f1b428 100644
> --- a/webconsole-plugins/shell/pom.xml
> +++ b/webconsole-plugins/shell/pom.xml
> @@ -40,7 +40,7 @@
>                       <plugin>
>                               <groupId>org.codehaus.mojo</groupId>
>                               
> <artifactId>native2ascii-maven-plugin</artifactId>
> -                             <version>1.0-alpha-1</version>
> +                             <version>1.0-beta-1</version>
>                               <executions>
>                                       <execution>
>                                               <goals>
> diff --git a/webconsole-plugins/upnp/pom.xml b/webconsole-plugins/upnp/pom.xml
> index 413da08..bb091a4 100644
> --- a/webconsole-plugins/upnp/pom.xml
> +++ b/webconsole-plugins/upnp/pom.xml
> @@ -48,7 +48,7 @@
>              <plugin>
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>native2ascii-maven-plugin</artifactId>
> -                <version>1.0-alpha-1</version>
> +                <version>1.0-beta-1</version>
>                  <executions>
>                      <execution>
>                          <goals>
> diff --git a/webconsole/pom.xml b/webconsole/pom.xml
> index bf4e1cb..b9f0db2 100644
> --- a/webconsole/pom.xml
> +++ b/webconsole/pom.xml
> @@ -69,7 +69,7 @@
>              <plugin>
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>native2ascii-maven-plugin</artifactId>
> -                <version>1.0-alpha-1</version>
> +                <version>1.0-beta-1</version>
>                  <executions>
>                      <execution>
>                          <goals>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to