Enable run act framework application.
First, add the plugin into your pom.xml file in the <build><plugins>:
<plugin>
<groupId>org.actframework</groupId>
<artifactId>act-maven-plugin</artifactId>
<version>${act-maven-plugin.version}</version>
</plugin>Second, ensure you have app.entry property defined in your pom.xml file:
<properties>
<app.entry>demo.helloworld.AppEntry</app.entry>
</properties>Now you can run your actframework application by
mvn clean compile act:run
Since act-1.8.8-RC1 you can run end to end test using
mvn clean compile act:e2e
For more about end to end test, please refer to act-e2e
TBD