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