-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
48 lines (41 loc) · 1.39 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!--
Cleaning after a package.
mvn clean
Behaviour driven development test harness for writing
Jasmine unit test spec files. Starts a web server at
http://localhost:8234 to run the unit tests within.
mvn jasmine:bdd
Run the Jasmine unit test spec files automatically.
mvn test
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>uk.co.codezen</groupId>
<artifactId>backbone.storageProxy</artifactId>
<version>1.0.0-SNAPSHOT</version>
<build>
<plugins>
<!-- Jasmine test runner -->
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<version>1.3.1.2</version>
<configuration>
<preloadSources>
<source>src/libs/jquery.js</source>
<source>src/libs/underscore.js</source>
<source>src/libs/backbone.js</source>
</preloadSources>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>