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

Last change on this file since 1392 was 1351, checked in by pharms, 10 years ago
  • update to newer Jetty version
File size: 5.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    <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.eclipse.jetty</groupId>
46            <artifactId>jetty-server</artifactId>
47            <version>9.1.0.M0</version>
48        </dependency>
49        <dependency>
50            <groupId>org.eclipse.jetty</groupId>
51            <artifactId>jetty-servlet</artifactId>
52            <version>9.1.0.M0</version>
53        </dependency>
54        <dependency>
55            <groupId>org.eclipse.jetty</groupId>
56            <artifactId>jetty-servlets</artifactId>
57            <version>9.1.0.M0</version>
58        </dependency>
59        <dependency>
60            <groupId>com.googlecode.json-simple</groupId>
61            <artifactId>json-simple</artifactId>
62            <version>1.1.1</version>
63        </dependency>
64        <dependency>
65            <groupId>commons-codec</groupId>
66            <artifactId>commons-codec</artifactId>
67            <version>1.7</version>
68        </dependency>
69    </dependencies>
70    <build>
71        <resources>
72            <resource>
73                <directory>src/main/js</directory>
74            </resource>
75        </resources>
76        <extensions>
77            <extension>
78                <groupId>org.codehaus.mojo</groupId>
79                <artifactId>javascript-maven-plugin</artifactId>
80                <version>2.0.0-alpha-1</version>
81            </extension>
82        </extensions>
83        <plugins>
84            <plugin>
85                <groupId>org.codehaus.mojo</groupId>
86                <artifactId>jslint-maven-plugin</artifactId>
87                <version>1.0.1</version>
88                <configuration>
89                    <includes>
90                        <include>autoquest-htmlmonitor.js</include>
91                    </includes>
92                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
93                    <failOnIssues>false</failOnIssues>
94                </configuration>
95                <executions>
96                    <execution>
97                        <goals>
98                            <goal>jslint</goal>
99                        </goals>
100                    </execution>
101                </executions>
102            </plugin>
103            <plugin>
104                <artifactId>maven-compiler-plugin</artifactId>
105                <version>2.3.2</version>
106                <configuration>
107                    <source>1.7</source>
108                    <target>1.7</target>
109                </configuration>
110            </plugin>
111            <plugin>
112                <groupId>org.apache.maven.plugins</groupId>
113                <artifactId>maven-jar-plugin</artifactId>
114                <configuration>
115                    <archive>
116                        <manifest>
117                            <addClasspath>true</addClasspath>
118                            <classpathPrefix>lib/</classpathPrefix>
119                            <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass>
120                        </manifest>
121                    </archive>
122                </configuration>
123            </plugin>
124            <plugin>
125                <artifactId>maven-assembly-plugin</artifactId>
126                <version>2.2-beta-2</version>
127                <configuration>
128                    <descriptors>
129                        <descriptor>src/main/assembly/bin.xml</descriptor>
130                        <descriptor>src/main/assembly/config.xml</descriptor>
131                        <descriptor>src/main/assembly/drupal.xml</descriptor>
132                    </descriptors>
133                </configuration>
134                <executions>
135                    <execution>
136                        <id>make-assembly</id>
137                        <phase>package</phase>
138                        <goals>
139                            <goal>single</goal>
140                        </goals>
141                    </execution>
142                </executions>
143            </plugin>
144        </plugins>
145    </build>
146</project>
Note: See TracBrowser for help on using the repository browser.