Skip to content

Commit

Permalink
[incubator-kie-issues#1609] Fix newly added springboot examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele-Cardosi committed Nov 12, 2024
1 parent edf8f80 commit 3974fb2
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 20 deletions.
9 changes: 8 additions & 1 deletion kogito-springboot-examples/dmn-15-springboot-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,14 @@
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-maven-plugin</artifactId>
<version>${version.org.kie.kogito}</version>
<extensions>true</extensions>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>generateModel</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,14 @@
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-maven-plugin</artifactId>
<version>${version.org.kie.kogito}</version>
<extensions>true</extensions>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>generateModel</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
package testscenario;/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package testscenario;

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

0 comments on commit 3974fb2

Please sign in to comment.