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

Last change on this file since 857 was 857, checked in by pharms, 12 years ago
  • initial version of the HTML monitor
File size: 4.4 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>autoquest-htmlmonitor</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>autoquest-htmlmonitor</name>
11    <packaging>js</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                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
69                    <failOnIssues>false</failOnIssues>
70                </configuration>
71                <executions>
72                    <execution>
73                        <goals>
74                            <goal>jslint</goal>
75                        </goals>
76                    </execution>
77                </executions>
78            </plugin>
79            <plugin>
80                <artifactId>maven-compiler-plugin</artifactId>
81                <version>2.3.2</version>
82                <configuration>
83                    <source>1.6</source>
84                    <target>1.6</target>
85                </configuration>
86            </plugin>
87            <plugin>
88                <groupId>org.apache.maven.plugins</groupId>
89                <artifactId>maven-jar-plugin</artifactId>
90                <configuration>
91                    <archive>
92                        <manifest>
93                            <addClasspath>true</addClasspath>
94                            <classpathPrefix>lib/</classpathPrefix>
95                            <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass>
96                        </manifest>
97                    </archive>
98                </configuration>
99            </plugin>
100            <plugin>
101                <artifactId>maven-assembly-plugin</artifactId>
102                <version>2.2-beta-2</version>
103                <configuration>
104                    <descriptors>
105                        <descriptor>src/main/assembly/bin.xml</descriptor>
106                    </descriptors>
107                </configuration>
108                <executions>
109                    <execution>
110                        <id>make-assembly</id>
111                        <phase>package</phase>
112                        <goals>
113                            <goal>single</goal>
114                        </goals>
115                    </execution>
116                </executions>
117            </plugin>
118        </plugins>
119    </build>
120</project>
Note: See TracBrowser for help on using the repository browser.