Skip to content

Jasmine Maven Plugin 1.3.1.5

Compare
Choose a tag to compare
@klieber klieber released this 09 May 04:22
· 287 commits to master since this release
  • Support for referencing scripts from webjars or on the classpath via the preloadSources parameter. See #221.
  • Support for adding additional contexts so that scripts can be loaded from locations other than source and spec directories. See example configuration here and an example project here.
  • Made a small change to the webDriverCapabilities to allow usage of maven's implementation hints so capability values can be objects other than Strings. This does not work on map entry values but it does work on items in a list. For example:
<webDriverCapabilities>
  <capability>
    <name>this-is-a-string-cabability</name>
    <value>a-string</value>
  </capability>
  <capability>
    <name>this-is-a-boolean-capability</name>
    <value implementation="java.lang.Boolean">true</value>
  </capability>
  <capability>
    <name>phantomjs.cli.args</name>
    <list>
      <value implementation="java.lang.Integer">10</value> <!-- works in list elements -->
      <value>this-is-a-string</value>
    </list>
  </capability>
</webDriverCapabilities>

The release should be over in maven central soon. Check it out.