Skip to content

Commit

Permalink
Merged coverage information #242
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoffat committed Feb 2, 2022
1 parent bd47ffe commit 48b230b
Show file tree
Hide file tree
Showing 8 changed files with 87 additions and 15 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified libs/.DS_Store
Binary file not shown.
Binary file added libs/chat-workflow-coverage/.DS_Store
Binary file not shown.
83 changes: 83 additions & 0 deletions libs/chat-workflow-coverage/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>chat-workflow-coverage</artifactId>
<name>Chat Workflow Coverage Report</name>
<description>Used For Jacoco</description>

<parent>
<groupId>org.finos.springbot</groupId>
<artifactId>spring-bot</artifactId>
<version>9.0.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<profiles>
<profile>
<!-- this profile generates code coverage, should be run by the ci server -->
<id>symphony-ci</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<executions>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>org/finos/springbot/tool/**/*</exclude>
<exclude>org/finos/springboot/demo/**/*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>


<dependencies>

<dependency>
<groupId>org.finos.springbot</groupId>
<artifactId>chat-workflow</artifactId>
<version>9.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.finos.springbot</groupId>
<artifactId>symphony-bdk-chat-workflow-spring-boot-starter</artifactId>
<version>9.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.finos.springbot</groupId>
<artifactId>teams-chat-workflow-spring-boot-starter</artifactId>
<version>9.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.finos.springbot</groupId>
<artifactId>entity-json</artifactId>
<version>9.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.finos.springbot</groupId>
<artifactId>entities</artifactId>
<version>9.0.0-SNAPSHOT</version>
</dependency>

</dependencies>

</project>
17 changes: 2 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
<module>demos/demo-bot</module>
<module>demos/todo-bot</module>
<module>demos/claim-bot</module>

<module>libs/chat-workflow-coverage</module>
</modules>

<properties>
Expand Down Expand Up @@ -184,22 +186,7 @@
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>org/finos/springbot/tool/**/*</exclude>
<exclude>org/finos/springboot/demo/**/*</exclude>
</excludes>
<destFile>${maven.multiModuleProjectDirectory}/target/combined.exec</destFile>
<append>true</append>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Binary file added tools/.DS_Store
Binary file not shown.
Binary file added tools/reminder-bot/.DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions tools/reminder-bot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
</dependency>

</dependencies>



<build>
<plugins>
Expand Down

0 comments on commit 48b230b

Please sign in to comment.