[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> |
---|
[2179] | 5 | <version>0.2.4-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> |
---|
[2179] | 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> |
---|
[2202] | 21 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url> |
---|
[1538] | 22 | </snapshotRepository> |
---|
| 23 | <repository> |
---|
| 24 | <id>autoquest</id> |
---|
[2202] | 25 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url> |
---|
[1538] | 26 | </repository> |
---|
| 27 | </distributionManagement> |
---|
[2150] | 28 | <repositories> |
---|
| 29 | <repository> |
---|
| 30 | <id>autoquest-snapshots</id> |
---|
[2202] | 31 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url> |
---|
[2150] | 32 | </repository> |
---|
| 33 | <repository> |
---|
| 34 | <id>autoquest</id> |
---|
[2202] | 35 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url> |
---|
[2150] | 36 | </repository> |
---|
| 37 | </repositories> |
---|
[857] | 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> |
---|
[1940] | 59 | <version>${project.version}</version> |
---|
[857] | 60 | </dependency> |
---|
| 61 | <dependency> |
---|
[1351] | 62 | <groupId>org.eclipse.jetty</groupId> |
---|
| 63 | <artifactId>jetty-server</artifactId> |
---|
| 64 | <version>9.1.0.M0</version> |
---|
[857] | 65 | </dependency> |
---|
| 66 | <dependency> |
---|
[880] | 67 | <groupId>org.eclipse.jetty</groupId> |
---|
[1351] | 68 | <artifactId>jetty-servlet</artifactId> |
---|
| 69 | <version>9.1.0.M0</version> |
---|
| 70 | </dependency> |
---|
| 71 | <dependency> |
---|
| 72 | <groupId>org.eclipse.jetty</groupId> |
---|
[880] | 73 | <artifactId>jetty-servlets</artifactId> |
---|
[1351] | 74 | <version>9.1.0.M0</version> |
---|
[857] | 75 | </dependency> |
---|
| 76 | <dependency> |
---|
| 77 | <groupId>com.googlecode.json-simple</groupId> |
---|
| 78 | <artifactId>json-simple</artifactId> |
---|
| 79 | <version>1.1.1</version> |
---|
| 80 | </dependency> |
---|
[1069] | 81 | <dependency> |
---|
| 82 | <groupId>commons-codec</groupId> |
---|
| 83 | <artifactId>commons-codec</artifactId> |
---|
| 84 | <version>1.7</version> |
---|
| 85 | </dependency> |
---|
[857] | 86 | </dependencies> |
---|
| 87 | <build> |
---|
[879] | 88 | <resources> |
---|
| 89 | <resource> |
---|
| 90 | <directory>src/main/js</directory> |
---|
| 91 | </resource> |
---|
| 92 | </resources> |
---|
[857] | 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> |
---|
[2078] | 101 | <!-- plugin> |
---|
[857] | 102 | <groupId>org.codehaus.mojo</groupId> |
---|
| 103 | <artifactId>jslint-maven-plugin</artifactId> |
---|
| 104 | <version>1.0.1</version> |
---|
| 105 | <configuration> |
---|
[867] | 106 | <includes> |
---|
[938] | 107 | <include>autoquest-htmlmonitor.js</include> |
---|
[867] | 108 | </includes> |
---|
[857] | 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> |
---|
[2078] | 119 | </plugin --> |
---|
[857] | 120 | <plugin> |
---|
| 121 | <artifactId>maven-compiler-plugin</artifactId> |
---|
[2260] | 122 | <version>3.8.0</version> |
---|
[857] | 123 | <configuration> |
---|
[2260] | 124 | <release>11</release> |
---|
[857] | 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> |
---|
[938] | 135 | <mainClass>de.ugoe.cs.autoquest.htmlmonitor.Runner</mainClass> |
---|
[857] | 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> |
---|
[1069] | 146 | <descriptor>src/main/assembly/config.xml</descriptor> |
---|
[1193] | 147 | <descriptor>src/main/assembly/drupal.xml</descriptor> |
---|
[857] | 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> |
---|
[2191] | 160 | <plugin> |
---|
| 161 | <groupId>org.codehaus.mojo</groupId> |
---|
| 162 | <artifactId>findbugs-maven-plugin</artifactId> |
---|
| 163 | <version>3.0.5</version> |
---|
| 164 | <configuration> |
---|
| 165 | <xmlOutput>true</xmlOutput> |
---|
| 166 | </configuration> |
---|
| 167 | </plugin> |
---|
[857] | 168 | </plugins> |
---|
| 169 | </build> |
---|
| 170 | </project> |
---|