[857] | 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> |
---|
[920] | 7 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
[938] | 8 | <artifactId>autoquest-htmlmonitor</artifactId> |
---|
[857] | 9 | <version>0.0.1-SNAPSHOT</version> |
---|
[938] | 10 | <name>autoquest-htmlmonitor</name> |
---|
[927] | 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> |
---|
[867] | 17 | <packaging>jar</packaging> |
---|
[857] | 18 | <scm> |
---|
[938] | 19 | <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-htmlmonitor</url> |
---|
[857] | 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> |
---|
[880] | 50 | <groupId>org.eclipse.jetty</groupId> |
---|
| 51 | <artifactId>jetty-servlets</artifactId> |
---|
| 52 | <version>8.1.7.v20120910</version> |
---|
[857] | 53 | </dependency> |
---|
| 54 | <dependency> |
---|
| 55 | <groupId>com.googlecode.json-simple</groupId> |
---|
| 56 | <artifactId>json-simple</artifactId> |
---|
| 57 | <version>1.1.1</version> |
---|
| 58 | </dependency> |
---|
[1069] | 59 | <dependency> |
---|
| 60 | <groupId>commons-codec</groupId> |
---|
| 61 | <artifactId>commons-codec</artifactId> |
---|
| 62 | <version>1.7</version> |
---|
| 63 | </dependency> |
---|
[857] | 64 | </dependencies> |
---|
| 65 | <build> |
---|
[879] | 66 | <resources> |
---|
| 67 | <resource> |
---|
| 68 | <directory>src/main/js</directory> |
---|
| 69 | </resource> |
---|
| 70 | </resources> |
---|
[857] | 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> |
---|
[867] | 84 | <includes> |
---|
[938] | 85 | <include>autoquest-htmlmonitor.js</include> |
---|
[867] | 86 | </includes> |
---|
[857] | 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> |
---|
[938] | 114 | <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass> |
---|
[857] | 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> |
---|
[1069] | 125 | <descriptor>src/main/assembly/config.xml</descriptor> |
---|
[1193] | 126 | <descriptor>src/main/assembly/drupal.xml</descriptor> |
---|
[857] | 127 | </descriptors> |
---|
| 128 | </configuration> |
---|
| 129 | <executions> |
---|
| 130 | <execution> |
---|
| 131 | <id>make-assembly</id> |
---|
| 132 | <phase>package</phase> |
---|
| 133 | <goals> |
---|
| 134 | <goal>single</goal> |
---|
| 135 | </goals> |
---|
| 136 | </execution> |
---|
| 137 | </executions> |
---|
| 138 | </plugin> |
---|
| 139 | </plugins> |
---|
| 140 | </build> |
---|
| 141 | </project> |
---|