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

Last change on this file since 927 was 927, checked in by sherbold, 12 years ago
  • added copyright under the Apache License, Version 2.0
File size: 4.9 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.autoquest</groupId>
8    <artifactId>autoautoquest-htmlmonitor</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>autoautoquest-htmlmonitor</name>
11    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <packaging>jar</packaging>
18    <scm>
19        <url>https://autoautoquest.informatik.uni-goettingen.de/svn/autoautoquest/trunk/autoautoquest-htmlmonitor</url>
20    </scm>
21    <pluginRepositories>
22        <pluginRepository>
23            <id>javascript</id>
24            <name>Codehaus Snapshot Repository</name>
25            <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url>
26            <layout>default</layout>
27            <snapshots>
28                <enabled>true</enabled>
29            </snapshots>
30            <releases>
31                <updatePolicy>never</updatePolicy>
32            </releases>
33        </pluginRepository>
34    </pluginRepositories>
35    <properties>
36        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37    </properties>
38    <dependencies>
39        <dependency>
40            <groupId>de.ugoe.cs</groupId>
41            <artifactId>java-utils</artifactId>
42            <version>0.0.1-SNAPSHOT</version>
43        </dependency>
44        <dependency>
45            <groupId>org.mortbay.jetty</groupId>
46            <artifactId>jetty</artifactId>
47            <version>6.1.22</version>
48        </dependency>
49        <dependency>
50            <groupId>org.eclipse.jetty</groupId>
51            <artifactId>jetty-servlets</artifactId>
52            <version>8.1.7.v20120910</version>
53        </dependency>
54        <dependency>
55            <groupId>com.googlecode.json-simple</groupId>
56            <artifactId>json-simple</artifactId>
57            <version>1.1.1</version>
58        </dependency>
59    </dependencies>
60    <build>
61        <resources>
62            <resource>
63                <directory>src/main/js</directory>
64            </resource>
65        </resources>
66        <extensions>
67            <extension>
68                <groupId>org.codehaus.mojo</groupId>
69                <artifactId>javascript-maven-plugin</artifactId>
70                <version>2.0.0-alpha-1</version>
71            </extension>
72        </extensions>
73        <plugins>
74            <plugin>
75                <groupId>org.codehaus.mojo</groupId>
76                <artifactId>jslint-maven-plugin</artifactId>
77                <version>1.0.1</version>
78                <configuration>
79                    <includes>
80                        <include>autoautoquest-htmlmonitor.js</include>
81                    </includes>
82                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
83                    <failOnIssues>false</failOnIssues>
84                </configuration>
85                <executions>
86                    <execution>
87                        <goals>
88                            <goal>jslint</goal>
89                        </goals>
90                    </execution>
91                </executions>
92            </plugin>
93            <plugin>
94                <artifactId>maven-compiler-plugin</artifactId>
95                <version>2.3.2</version>
96                <configuration>
97                    <source>1.6</source>
98                    <target>1.6</target>
99                </configuration>
100            </plugin>
101            <plugin>
102                <groupId>org.apache.maven.plugins</groupId>
103                <artifactId>maven-jar-plugin</artifactId>
104                <configuration>
105                    <archive>
106                        <manifest>
107                            <addClasspath>true</addClasspath>
108                            <classpathPrefix>lib/</classpathPrefix>
109                            <mainClass>de.ugoe.cs.autoautoquest.htmlmonitor.Runner</mainClass>
110                        </manifest>
111                    </archive>
112                </configuration>
113            </plugin>
114            <plugin>
115                <artifactId>maven-assembly-plugin</artifactId>
116                <version>2.2-beta-2</version>
117                <configuration>
118                    <descriptors>
119                        <descriptor>src/main/assembly/bin.xml</descriptor>
120                    </descriptors>
121                </configuration>
122                <executions>
123                    <execution>
124                        <id>make-assembly</id>
125                        <phase>package</phase>
126                        <goals>
127                            <goal>single</goal>
128                        </goals>
129                    </execution>
130                </executions>
131            </plugin>
132        </plugins>
133    </build>
134</project>
Note: See TracBrowser for help on using the repository browser.