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/${project.artifactId}</url> |
---|
20 | <connection>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection> |
---|
21 | </scm> |
---|
22 | <pluginRepositories> |
---|
23 | <pluginRepository> |
---|
24 | <id>javascript</id> |
---|
25 | <name>Codehaus Snapshot Repository</name> |
---|
26 | <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url> |
---|
27 | <layout>default</layout> |
---|
28 | <snapshots> |
---|
29 | <enabled>true</enabled> |
---|
30 | </snapshots> |
---|
31 | <releases> |
---|
32 | <updatePolicy>never</updatePolicy> |
---|
33 | </releases> |
---|
34 | </pluginRepository> |
---|
35 | </pluginRepositories> |
---|
36 | <properties> |
---|
37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
38 | </properties> |
---|
39 | <dependencies> |
---|
40 | <dependency> |
---|
41 | <groupId>de.ugoe.cs</groupId> |
---|
42 | <artifactId>java-utils</artifactId> |
---|
43 | <version>0.0.1-SNAPSHOT</version> |
---|
44 | </dependency> |
---|
45 | <dependency> |
---|
46 | <groupId>org.eclipse.jetty</groupId> |
---|
47 | <artifactId>jetty-server</artifactId> |
---|
48 | <version>9.1.0.M0</version> |
---|
49 | </dependency> |
---|
50 | <dependency> |
---|
51 | <groupId>org.eclipse.jetty</groupId> |
---|
52 | <artifactId>jetty-servlet</artifactId> |
---|
53 | <version>9.1.0.M0</version> |
---|
54 | </dependency> |
---|
55 | <dependency> |
---|
56 | <groupId>org.eclipse.jetty</groupId> |
---|
57 | <artifactId>jetty-servlets</artifactId> |
---|
58 | <version>9.1.0.M0</version> |
---|
59 | </dependency> |
---|
60 | <dependency> |
---|
61 | <groupId>com.googlecode.json-simple</groupId> |
---|
62 | <artifactId>json-simple</artifactId> |
---|
63 | <version>1.1.1</version> |
---|
64 | </dependency> |
---|
65 | <dependency> |
---|
66 | <groupId>commons-codec</groupId> |
---|
67 | <artifactId>commons-codec</artifactId> |
---|
68 | <version>1.7</version> |
---|
69 | </dependency> |
---|
70 | </dependencies> |
---|
71 | <build> |
---|
72 | <resources> |
---|
73 | <resource> |
---|
74 | <directory>src/main/js</directory> |
---|
75 | </resource> |
---|
76 | </resources> |
---|
77 | <extensions> |
---|
78 | <extension> |
---|
79 | <groupId>org.codehaus.mojo</groupId> |
---|
80 | <artifactId>javascript-maven-plugin</artifactId> |
---|
81 | <version>2.0.0-alpha-1</version> |
---|
82 | </extension> |
---|
83 | </extensions> |
---|
84 | <plugins> |
---|
85 | <plugin> |
---|
86 | <groupId>org.codehaus.mojo</groupId> |
---|
87 | <artifactId>jslint-maven-plugin</artifactId> |
---|
88 | <version>1.0.1</version> |
---|
89 | <configuration> |
---|
90 | <includes> |
---|
91 | <include>autoquest-htmlmonitor.js</include> |
---|
92 | </includes> |
---|
93 | <allowOneVarStatementPerFunction>false</allowOneVarStatementPerFunction> |
---|
94 | <failOnIssues>false</failOnIssues> |
---|
95 | </configuration> |
---|
96 | <executions> |
---|
97 | <execution> |
---|
98 | <goals> |
---|
99 | <goal>jslint</goal> |
---|
100 | </goals> |
---|
101 | </execution> |
---|
102 | </executions> |
---|
103 | </plugin> |
---|
104 | <plugin> |
---|
105 | <artifactId>maven-compiler-plugin</artifactId> |
---|
106 | <version>2.3.2</version> |
---|
107 | <configuration> |
---|
108 | <source>1.7</source> |
---|
109 | <target>1.7</target> |
---|
110 | </configuration> |
---|
111 | </plugin> |
---|
112 | <plugin> |
---|
113 | <groupId>org.apache.maven.plugins</groupId> |
---|
114 | <artifactId>maven-jar-plugin</artifactId> |
---|
115 | <configuration> |
---|
116 | <archive> |
---|
117 | <manifest> |
---|
118 | <addClasspath>true</addClasspath> |
---|
119 | <classpathPrefix>lib/</classpathPrefix> |
---|
120 | <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass> |
---|
121 | </manifest> |
---|
122 | </archive> |
---|
123 | </configuration> |
---|
124 | </plugin> |
---|
125 | <plugin> |
---|
126 | <artifactId>maven-assembly-plugin</artifactId> |
---|
127 | <version>2.2-beta-2</version> |
---|
128 | <configuration> |
---|
129 | <descriptors> |
---|
130 | <descriptor>src/main/assembly/bin.xml</descriptor> |
---|
131 | <descriptor>src/main/assembly/config.xml</descriptor> |
---|
132 | <descriptor>src/main/assembly/drupal.xml</descriptor> |
---|
133 | </descriptors> |
---|
134 | </configuration> |
---|
135 | <executions> |
---|
136 | <execution> |
---|
137 | <id>make-assembly</id> |
---|
138 | <phase>package</phase> |
---|
139 | <goals> |
---|
140 | <goal>single</goal> |
---|
141 | </goals> |
---|
142 | </execution> |
---|
143 | </executions> |
---|
144 | </plugin> |
---|
145 | </plugins> |
---|
146 | </build> |
---|
147 | </project> |
---|