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

Last change on this file since 1179 was 1069, checked in by pharms, 11 years ago
  • support of new HTML logging format
File size: 5.1 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    <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://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-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        <dependency>
60            <groupId>commons-codec</groupId>
61            <artifactId>commons-codec</artifactId>
62            <version>1.7</version>
63        </dependency>
64    </dependencies>
65    <build>
66        <resources>
67            <resource>
68                <directory>src/main/js</directory>
69            </resource>
70        </resources>
71        <extensions>
72            <extension>
73                <groupId>org.codehaus.mojo</groupId>
74                <artifactId>javascript-maven-plugin</artifactId>
75                <version>2.0.0-alpha-1</version>
76            </extension>
77        </extensions>
78        <plugins>
79            <plugin>
80                <groupId>org.codehaus.mojo</groupId>
81                <artifactId>jslint-maven-plugin</artifactId>
82                <version>1.0.1</version>
83                <configuration>
84                    <includes>
85                        <include>autoquest-htmlmonitor.js</include>
86                    </includes>
87                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
88                    <failOnIssues>false</failOnIssues>
89                </configuration>
90                <executions>
91                    <execution>
92                        <goals>
93                            <goal>jslint</goal>
94                        </goals>
95                    </execution>
96                </executions>
97            </plugin>
98            <plugin>
99                <artifactId>maven-compiler-plugin</artifactId>
100                <version>2.3.2</version>
101                <configuration>
102                    <source>1.6</source>
103                    <target>1.6</target>
104                </configuration>
105            </plugin>
106            <plugin>
107                <groupId>org.apache.maven.plugins</groupId>
108                <artifactId>maven-jar-plugin</artifactId>
109                <configuration>
110                    <archive>
111                        <manifest>
112                            <addClasspath>true</addClasspath>
113                            <classpathPrefix>lib/</classpathPrefix>
114                            <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass>
115                        </manifest>
116                    </archive>
117                </configuration>
118            </plugin>
119            <plugin>
120                <artifactId>maven-assembly-plugin</artifactId>
121                <version>2.2-beta-2</version>
122                <configuration>
123                    <descriptors>
124                        <descriptor>src/main/assembly/bin.xml</descriptor>
125                        <descriptor>src/main/assembly/config.xml</descriptor>
126                    </descriptors>
127                </configuration>
128                <executions>
129                    <execution>
130                        <id>make-assembly</id>
131                        <phase>package</phase>
132                        <goals>
133                            <goal>single</goal>
134                        </goals>
135                    </execution>
136                </executions>
137            </plugin>
138        </plugins>
139    </build>
140</project>
Note: See TracBrowser for help on using the repository browser.