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

Last change on this file since 2263 was 2263, checked in by pharms, 5 years ago
File size: 6.6 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2    <modelVersion>4.0.0</modelVersion>
3    <groupId>de.ugoe.cs.autoquest</groupId>
4    <artifactId>autoquest-htmlmonitor</artifactId>
5    <version>0.2.4-SNAPSHOT</version>
6    <name>autoquest-htmlmonitor</name>
7    <licenses>
8        <license>
9            <name>The Apache Software License, Version 2.0</name>
10            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
11        </license>
12    </licenses>
13    <packaging>jar</packaging>
14    <scm>
15        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url>
16        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection>
17    </scm>
18    <distributionManagement>
19        <snapshotRepository>
20            <id>autoquest-snapshots</id>
21            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
22        </snapshotRepository>
23        <repository>
24            <id>autoquest</id>
25            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
26        </repository>
27    </distributionManagement>
28    <repositories>
29        <repository>
30            <id>autoquest-snapshots</id>
31            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
32        </repository>
33        <repository>
34            <id>autoquest</id>
35            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
36        </repository>
37    </repositories>
38    <pluginRepositories>
39        <pluginRepository>
40            <id>javascript</id>
41            <name>Codehaus Snapshot Repository</name>
42            <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url>
43            <layout>default</layout>
44            <snapshots>
45                <enabled>true</enabled>
46            </snapshots>
47            <releases>
48                <updatePolicy>never</updatePolicy>
49            </releases>
50        </pluginRepository>
51    </pluginRepositories>
52    <properties>
53        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54    </properties>
55    <dependencies>
56        <dependency>
57            <groupId>de.ugoe.cs</groupId>
58            <artifactId>java-utils</artifactId>
59            <version>${project.version}</version>
60        </dependency>
61        <dependency>
62            <groupId>org.eclipse.jetty</groupId>
63            <artifactId>jetty-server</artifactId>
64            <version>9.1.0.M0</version>
65        </dependency>
66        <dependency>
67            <groupId>org.eclipse.jetty</groupId>
68            <artifactId>jetty-servlet</artifactId>
69            <version>9.1.0.M0</version>
70        </dependency>
71        <dependency>
72            <groupId>org.eclipse.jetty</groupId>
73            <artifactId>jetty-servlets</artifactId>
74            <version>9.1.0.M0</version>
75        </dependency>
76        <dependency>
77            <groupId>com.googlecode.json-simple</groupId>
78            <artifactId>json-simple</artifactId>
79            <version>1.1.1</version>
80        </dependency>
81        <dependency>
82            <groupId>commons-codec</groupId>
83            <artifactId>commons-codec</artifactId>
84            <version>1.7</version>
85        </dependency>
86    </dependencies>
87    <build>
88        <resources>
89            <resource>
90                <directory>src/main/js</directory>
91            </resource>
92        </resources>
93        <extensions>
94            <extension>
95                <groupId>org.codehaus.mojo</groupId>
96                <artifactId>javascript-maven-plugin</artifactId>
97                <version>2.0.0-alpha-1</version>
98            </extension>
99        </extensions>
100        <plugins>
101            <!-- plugin>
102                <groupId>org.codehaus.mojo</groupId>
103                <artifactId>jslint-maven-plugin</artifactId>
104                <version>1.0.1</version>
105                <configuration>
106                    <includes>
107                        <include>autoquest-htmlmonitor.js</include>
108                    </includes>
109                    <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction>
110                    <failOnIssues>false</failOnIssues>
111                </configuration>
112                <executions>
113                    <execution>
114                        <goals>
115                            <goal>jslint</goal>
116                        </goals>
117                    </execution>
118                </executions>
119            </plugin -->
120            <plugin>
121                <artifactId>maven-compiler-plugin</artifactId>
122                <version>3.8.0</version>
123                <configuration>
124                    <release>11</release>
125                </configuration>
126            </plugin>
127            <plugin>
128                <groupId>org.apache.maven.plugins</groupId>
129                <artifactId>maven-jar-plugin</artifactId>
130                <configuration>
131                    <archive>
132                        <manifest>
133                            <addClasspath>true</addClasspath>
134                            <classpathPrefix>lib/</classpathPrefix>
135                            <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass>
136                        </manifest>
137                    </archive>
138                </configuration>
139            </plugin>
140            <plugin>
141                <artifactId>maven-assembly-plugin</artifactId>
142                <version>2.2-beta-2</version>
143                <configuration>
144                    <descriptors>
145                        <descriptor>src/main/assembly/bin.xml</descriptor>
146                        <descriptor>src/main/assembly/config.xml</descriptor>
147                        <descriptor>src/main/assembly/drupal.xml</descriptor>
148                    </descriptors>
149                </configuration>
150                <executions>
151                    <execution>
152                        <id>make-assembly</id>
153                        <phase>package</phase>
154                        <goals>
155                            <goal>single</goal>
156                        </goals>
157                    </execution>
158                </executions>
159            </plugin>
160            <plugin>
161                <groupId>com.github.spotbugs</groupId>
162                <artifactId>spotbugs-maven-plugin</artifactId>
163                <version>3.1.12</version>
164                <configuration>
165                    <xmlOutput>true</xmlOutput>
166                </configuration>
167            </plugin>
168        </plugins>
169    </build>
170</project>
Note: See TracBrowser for help on using the repository browser.