-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
66 lines (66 loc) · 2.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns='http://maven.apache.org/POM/4.0.0'>
<modelVersion>4.0.0</modelVersion>
<groupId>org.cccs.jslibs</groupId>
<artifactId>jslibs</artifactId>
<name>JSLibs</name>
<packaging>pom</packaging>
<description>Javascript Libraries</description>
<version>1.0.0-SNAPSHOT</version>
<parent>
<groupId>org.cccs.build</groupId>
<artifactId>parent-pom</artifactId>
<version>1.0.1-SNAPSHOT</version>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</configuration>
<executions>
<execution>
<id>assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<version>1.0.2-beta-5</version>
<executions>
<execution>
<goals>
<goal>generateManualRunner</goal>
<goal>resources</goal>
<goal>testResources</goal>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<browserVersion>INTERNET_EXPLORER_7</browserVersion>
<jsSrcDir>${project.basedir}/src/main/javascript</jsSrcDir>
<jsTestSrcDir>${project.basedir}/src/test/javascript/spec</jsTestSrcDir>
<!-- specify order in which JS sources should be loaded here-->
<sourceIncludes>
<include>lib/jquery-1.4.2.min.js</include>
<include>jquery.validator.js</include>
<include>jsMap.js</include>
<include>jsSet.js</include>
<include>jsString.js</include>
<include>http.utils.js</include>
<include>xml.utils.js</include>
<include>jsXslt.js</include>
</sourceIncludes>
</configuration>
</plugin>
</plugins>
</build>
</project>