Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes CAMEL-13330. Fixed classname in annotations of WIHs. Added new … #2825

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 21 additions & 1 deletion components/camel-jbpm/pom.xml
Expand Up @@ -156,11 +156,31 @@
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.build.directory}/generated-sources/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to store templating-maven-plugin-version inside the parent/pom.xml for common update support
Otherwise, LGTM

<version>1.0.0</version>
<executions>
<execution>
<id>filter-src</id>
<goals>
<goal>filter-sources</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
</project>
Expand Up @@ -54,7 +54,7 @@
name = "InOnlyCamelConnector",
displayName = "InOnlyCamelConnector",
category = "Camel",
defaultHandler = "mvel: new org.apache.camel.component.jbpm.workitem.InOnlyCamelWorkitemHandler()",
defaultHandler = "mvel: new org.apache.camel.component.jbpm.workitem.InOnlyCamelWorkItemHandler()",
documentation = "${artifactId}/index.html",
parameters = {
@WidParameter(name = JBPMConstants.CAMEL_ENDPOINT_ID_WI_PARAM)
Expand Down
Expand Up @@ -56,7 +56,7 @@
name = "InOutCamelConnector",
displayName = "InOutCamelConnector",
category = "Camel",
defaultHandler = "mvel: new org.apache.camel.component.jbpm.workitem.InOutCamelWorkitemHandler()",
defaultHandler = "mvel: new org.apache.camel.component.jbpm.workitem.InOutCamelWorkItemHandler()",
documentation = "${artifactId}/index.html",
parameters = {
@WidParameter(name = JBPMConstants.CAMEL_ENDPOINT_ID_WI_PARAM)
Expand Down
Expand Up @@ -4,7 +4,7 @@
"displayName" : "InOnlyCamelConnector",
"category" : "Camel",
"description" : "",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOnlyCamelWorkitemHandler()",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOnlyCamelWorkItemHandler()",
"documentation" : "camel-jbpm/index.html",

"parameters" : [
Expand All @@ -24,4 +24,4 @@

]

]
]
Expand Up @@ -4,7 +4,7 @@
"displayName" : "InOutCamelConnector",
"category" : "Camel",
"description" : "",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOutCamelWorkitemHandler()",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOutCamelWorkItemHandler()",
"documentation" : "camel-jbpm/index.html",

"parameters" : [
Expand All @@ -24,4 +24,4 @@

]

]
]
6 changes: 3 additions & 3 deletions components/camel-jbpm/src/main/resources/camel-jbpm.wid
Expand Up @@ -4,7 +4,7 @@
"displayName" : "InOutCamelConnector",
"category" : "Camel",
"description" : "",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOutCamelWorkitemHandler()",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOutCamelWorkItemHandler()",
"documentation" : "camel-jbpm/index.html",

"parameters" : [
Expand All @@ -28,7 +28,7 @@
"displayName" : "InOnlyCamelConnector",
"category" : "Camel",
"description" : "",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOnlyCamelWorkitemHandler()",
"defaultHandler" : "mvel: new org.apache.camel.component.jbpm.workitem.InOnlyCamelWorkItemHandler()",
"documentation" : "camel-jbpm/index.html",

"parameters" : [
Expand All @@ -48,4 +48,4 @@

]

]
]