[
https://issues.apache.org/jira/browse/CAMEL-13051?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16741831#comment-16741831
]
Claus Ibsen commented on CAMEL-13051:
-------------------------------------
There is some null values in the json files for components in camel-core
{code}
{
"component": {
"kind": "component",
"scheme": "bean",
"syntax": "bean:beanName",
"title": "Bean",
"description": "The bean component is for invoking Java beans from Camel.",
"label": "core,java",
"deprecated": false,
"deprecationNote": "",
"async": false,
"consumerOnly": false,
"producerOnly": true,
"lenientProperties": false,
"javaType": "null",
"firstVersion": "1.0.0",
"groupId": "null",
"artifactId": "null",
"version": "null"
},
{code}
vs a 2.x
{code}
{
"component": {
"kind": "component",
"scheme": "bean",
"syntax": "bean:beanName",
"title": "Bean",
"description": "The bean component is for invoking Java beans from Camel.",
"label": "core,java",
"deprecated": false,
"deprecationNote": "",
"async": false,
"consumerOnly": false,
"producerOnly": true,
"lenientProperties": false,
"javaType": "org.apache.camel.component.bean.BeanComponent",
"firstVersion": "1.0.0",
"groupId": "org.apache.camel",
"artifactId": "camel-core",
"version": "2.24.0-SNAPSHOT"
},
{code}
> camel3 - build system needs to generate component.properties
> ------------------------------------------------------------
>
> Key: CAMEL-13051
> URL: https://issues.apache.org/jira/browse/CAMEL-13051
> Project: Camel
> Issue Type: Task
> Components: build system
> Affects Versions: 3.0.0
> Reporter: Claus Ibsen
> Assignee: Claus Ibsen
> Priority: Critical
> Fix For: 3.0.0
>
>
> We now generate more of the meta files in the META-INF/services folder. But
> the JARs from 2.x vs 3.0 is not exactly the same.
> The component.properties dataformat.properties language.properties files is
> currently not being generated.
> Some of our tooling depends on that these files are there.
> For example the camel-catalog is not correct, try to compare its 2.x JAR vs
> 3.0 JAR, and you can then find out much more what is wrong currently with the
> 3.0 branch.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)