source: trunk/autoquest-htmlmonitor/pom.xml @ 867

Last change on this file since 867 was 867, checked in by pharms, 12 years ago
  • changed execution of jslint to work without the js packaging
  • changed packaging to jar
File size: 4.5 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs.quest</groupId>
8    <artifactId>autoquest-htmlmonitor</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>autoquest-htmlmonitor</name>
11    <packaging>jar</packaging>
12    <scm>
13        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-htmlmonitor</url>
14    </scm>
15    <pluginRepositories>
16        <pluginRepository>
17            <id>javascript</id>
18            <name>Codehaus Snapshot Repository</name>
19            <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url>
20            <layout>default</layout>
21            <snapshots>
22                <enabled>true</enabled>
23            </snapshots>
24            <releases>
25                <updatePolicy>never</updatePolicy>
26            </releases>
27        </pluginRepository>
28    </pluginRepositories>
29    <properties>
30        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31    </properties>
32    <dependencies>
33        <dependency>
34            <groupId>de.ugoe.cs</groupId>
35            <artifactId>java-utils</artifactId>
36            <version>0.0.1-SNAPSHOT</version>
37        </dependency>
38        <dependency>
39            <groupId>org.mortbay.jetty</groupId>
40            <artifactId>jetty</artifactId>
41            <version>6.1.22</version>
42        </dependency>
43        <dependency>
44            <groupId>org.mortbay.jetty</groupId>
45            <artifactId>jetty-sslengine</artifactId>
46            <version>6.1.22</version>
47        </dependency>
48        <dependency>
49            <groupId>com.googlecode.json-simple</groupId>
50            <artifactId>json-simple</artifactId>
51            <version>1.1.1</version>
52        </dependency>
53    </dependencies>
54    <build>
55        <extensions>
56            <extension>
57                <groupId>org.codehaus.mojo</groupId>
58                <artifactId>javascript-maven-plugin</artifactId>
59                <version>2.0.0-alpha-1</version>
60            </extension>
61        </extensions>
62        <plugins>
63            <plugin>
64                <groupId>org.codehaus.mojo</groupId>
65                <artifactId>jslint-maven-plugin</artifactId>
66                <version>1.0.1</version>
67                <configuration>
68                    <includes>
69                        <include>autoquest-htmlmonitor.js</include>
70                    </includes>
71                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
72                    <failOnIssues>false</failOnIssues>
73                </configuration>
74                <executions>
75                    <execution>
76                        <goals>
77                            <goal>jslint</goal>
78                        </goals>
79                    </execution>
80                </executions>
81            </plugin>
82            <plugin>
83                <artifactId>maven-compiler-plugin</artifactId>
84                <version>2.3.2</version>
85                <configuration>
86                    <source>1.6</source>
87                    <target>1.6</target>
88                </configuration>
89            </plugin>
90            <plugin>
91                <groupId>org.apache.maven.plugins</groupId>
92                <artifactId>maven-jar-plugin</artifactId>
93                <configuration>
94                    <archive>
95                        <manifest>
96                            <addClasspath>true</addClasspath>
97                            <classpathPrefix>lib/</classpathPrefix>
98                            <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass>
99                        </manifest>
100                    </archive>
101                </configuration>
102            </plugin>
103            <plugin>
104                <artifactId>maven-assembly-plugin</artifactId>
105                <version>2.2-beta-2</version>
106                <configuration>
107                    <descriptors>
108                        <descriptor>src/main/assembly/bin.xml</descriptor>
109                    </descriptors>
110                </configuration>
111                <executions>
112                    <execution>
113                        <id>make-assembly</id>
114                        <phase>package</phase>
115                        <goals>
116                            <goal>single</goal>
117                        </goals>
118                    </execution>
119                </executions>
120            </plugin>
121        </plugins>
122    </build>
123</project>
Note: See TracBrowser for help on using the repository browser.