Skip to content

Commit f4ad91a

Browse files
authored
Merge pull request apache#50 from rgdoliveira/sync_main
Sync main branch with Apache main branch
2 parents 3cac4e2 + a122180 commit f4ad91a

File tree

39 files changed

+323
-56
lines changed
  • kogito-springboot-examples
    • decisiontable-springboot-example
    • dmn-15-springboot-example
    • dmn-drools-springboot-metrics
    • dmn-event-driven-springboot
    • dmn-listener-springboot
    • dmn-pmml-springboot-example
    • dmn-resource-jar-springboot-example/dmn-springboot-consumer-example
    • dmn-springboot-example
    • dmn-tracing-springboot
    • flexible-process-springboot
    • onboarding-springboot
    • pmml-event-driven-springboot
    • pmml-springboot-example
    • process-business-rules-springboot
    • process-decisions-rest-springboot
    • process-decisions-rules-springboot
    • process-decisions-springboot
    • process-infinispan-persistence-springboot
    • process-kafka-multi-springboot
    • process-kafka-quickstart-springboot
    • process-mongodb-persistence-springboot
    • process-monitoring-springboot
    • process-outbox-mongodb-springboot
    • process-performance-springboot
    • process-postgresql-persistence-springboot
    • process-rest-service-call-springboot
    • process-scripts-springboot
    • process-service-calls-springboot
    • process-springboot-example
    • process-timer-springboot
    • process-usertasks-custom-lifecycle-springboot
    • process-usertasks-springboot
    • process-usertasks-with-security-oidc-springboot
    • process-usertasks-with-security-springboot
    • rules-legacy-scesim-springboot-example
    • rules-legacy-springboot-example
    • ruleunit-event-driven-springboot
    • ruleunit-springboot-example

39 files changed

+323
-56
lines changed

kogito-springboot-examples/decisiontable-springboot-example/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,14 @@
7676
<groupId>org.kie.kogito</groupId>
7777
<artifactId>kogito-maven-plugin</artifactId>
7878
<version>${version.org.kie.kogito}</version>
79-
<extensions>true</extensions>
79+
<executions>
80+
<execution>
81+
<phase>compile</phase>
82+
<goals>
83+
<goal>generateModel</goal>
84+
</goals>
85+
</execution>
86+
</executions>
8087
</plugin>
8188
<plugin>
8289
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-15-springboot-example/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,14 @@
125125
<groupId>org.kie.kogito</groupId>
126126
<artifactId>kogito-maven-plugin</artifactId>
127127
<version>${version.org.kie.kogito}</version>
128-
<extensions>true</extensions>
128+
<executions>
129+
<execution>
130+
<phase>compile</phase>
131+
<goals>
132+
<goal>generateModel</goal>
133+
</goals>
134+
</execution>
135+
</executions>
129136
</plugin>
130137
<plugin>
131138
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-drools-springboot-metrics/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,14 @@
104104
<groupId>org.kie.kogito</groupId>
105105
<artifactId>kogito-maven-plugin</artifactId>
106106
<version>${version.org.kie.kogito}</version>
107-
<extensions>true</extensions>
107+
<executions>
108+
<execution>
109+
<phase>compile</phase>
110+
<goals>
111+
<goal>generateModel</goal>
112+
</goals>
113+
</execution>
114+
</executions>
108115
</plugin>
109116
<plugin>
110117
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-event-driven-springboot/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,14 @@
100100
<groupId>org.kie.kogito</groupId>
101101
<artifactId>kogito-maven-plugin</artifactId>
102102
<version>${version.org.kie.kogito}</version>
103-
<extensions>true</extensions>
103+
<executions>
104+
<execution>
105+
<phase>compile</phase>
106+
<goals>
107+
<goal>generateModel</goal>
108+
</goals>
109+
</execution>
110+
</executions>
104111
</plugin>
105112
<plugin>
106113
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-listener-springboot/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,14 @@
7979
<groupId>org.kie.kogito</groupId>
8080
<artifactId>kogito-maven-plugin</artifactId>
8181
<version>${version.org.kie.kogito}</version>
82-
<extensions>true</extensions>
82+
<executions>
83+
<execution>
84+
<phase>compile</phase>
85+
<goals>
86+
<goal>generateModel</goal>
87+
</goals>
88+
</execution>
89+
</executions>
8390
</plugin>
8491
<plugin>
8592
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-pmml-springboot-example/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,14 @@
9595
<groupId>org.kie.kogito</groupId>
9696
<artifactId>kogito-maven-plugin</artifactId>
9797
<version>${version.org.kie.kogito}</version>
98-
<extensions>true</extensions>
98+
<executions>
99+
<execution>
100+
<phase>compile</phase>
101+
<goals>
102+
<goal>generateModel</goal>
103+
</goals>
104+
</execution>
105+
</executions>
99106
</plugin>
100107
<plugin>
101108
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-resource-jar-springboot-example/dmn-springboot-consumer-example/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,14 @@
103103
<groupId>org.kie.kogito</groupId>
104104
<artifactId>kogito-maven-plugin</artifactId>
105105
<version>${version.org.kie.kogito}</version>
106-
<extensions>true</extensions>
106+
<executions>
107+
<execution>
108+
<phase>compile</phase>
109+
<goals>
110+
<goal>generateModel</goal>
111+
</goals>
112+
</execution>
113+
</executions>
107114
</plugin>
108115
<plugin>
109116
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-resource-jar-springboot-example/dmn-springboot-consumer-example/src/test/java/testscenario/KogitoScenarioJunitActivatorTest.java

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
package testscenario;/*
2-
* Licensed to the Apache Software Foundation (ASF) under one
3-
* or more contributor license agreements. See the NOTICE file
4-
* distributed with this work for additional information
5-
* regarding copyright ownership. The ASF licenses this file
6-
* to you under the Apache License, Version 2.0 (the
7-
* "License"); you may not use this file except in compliance
8-
* with the License. You may obtain a copy of the License at
9-
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
12-
* Unless required by applicable law or agreed to in writing,
13-
* software distributed under the License is distributed on an
14-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15-
* KIND, either express or implied. See the License for the
16-
* specific language governing permissions and limitations
17-
* under the License.
18-
*/
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
package testscenario;
1920

2021
/**
2122
* KogitoJunitActivator is a custom JUnit runner that enables the execution of Test Scenario files (*.scesim).

kogito-springboot-examples/dmn-springboot-example/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,14 @@
8484
<groupId>org.kie.kogito</groupId>
8585
<artifactId>kogito-maven-plugin</artifactId>
8686
<version>${version.org.kie.kogito}</version>
87-
<extensions>true</extensions>
87+
<executions>
88+
<execution>
89+
<phase>compile</phase>
90+
<goals>
91+
<goal>generateModel</goal>
92+
</goals>
93+
</execution>
94+
</executions>
8895
</plugin>
8996
<plugin>
9097
<groupId>org.springframework.boot</groupId>

kogito-springboot-examples/dmn-tracing-springboot/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,14 @@
9595
<groupId>org.kie.kogito</groupId>
9696
<artifactId>kogito-maven-plugin</artifactId>
9797
<version>${version.org.kie.kogito}</version>
98-
<extensions>true</extensions>
98+
<executions>
99+
<execution>
100+
<phase>compile</phase>
101+
<goals>
102+
<goal>generateModel</goal>
103+
</goals>
104+
</execution>
105+
</executions>
99106
</plugin>
100107
<plugin>
101108
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)