GUACAMOLE-1204: Add generic, listener-driven event system.

This commit is contained in:
Michael Jumper
2021-02-09 18:25:32 -08:00
parent 1ce4e975eb
commit df6b71541e
3 changed files with 404 additions and 0 deletions

View File

@@ -135,7 +135,29 @@
</goals>
</execution>
</executions>
</plugin>
<!-- Unit test using Jasmin and PhantomJS -->
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<phantomjs>
<version>2.1.1</version>
</phantomjs>
<sourceIncludes>
<sourceInclude>**/*.min.js</sourceInclude>
</sourceIncludes>
<jsSrcDir>${project.build.directory}/${project.build.finalName}</jsSrcDir>
</configuration>
</plugin>
</plugins>