| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
 | 2 |   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
 | 3 |   <modelVersion>4.0.0</modelVersion> | 
| Nils Diewald | 97b6638 | 2014-02-11 00:32:23 +0000 | [diff] [blame] | 4 |  | 
| Nils Diewald | f6b351c | 2014-09-04 21:34:05 +0000 | [diff] [blame] | 5 |   <!-- | 
| Nils Diewald | f6b351c | 2014-09-04 21:34:05 +0000 | [diff] [blame] | 6 |       ** Server | 
| Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 7 |       # Start the server with | 
| Akron | cb165f5 | 2015-08-24 16:20:48 +0200 | [diff] [blame] | 8 |       $ mvn compile exec:java | 
| Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 9 |  | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 10 |       # Or after packaging | 
 | 11 |       $ mvn clean package | 
 | 12 |       # with | 
 | 13 |       $ java -jar target/Krill-Server.jar | 
 | 14 |  | 
 | 15 |  | 
| Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 16 |       ** Formatter | 
 | 17 |       # Format the code with | 
 | 18 |       $ mvn java-formatter:format | 
 | 19 |  | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 20 |       ** Indexer after packaging (see above) | 
 | 21 |       $ java -jar target/Krill-Indexer.jar | 
| Akron | c63697c | 2015-06-17 22:32:02 +0200 | [diff] [blame] | 22 |              src/main/resources/krill.properties | 
| Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 23 |              /data/hdd/lucene-new/WPD/ | 
| Nils Diewald | f6b351c | 2014-09-04 21:34:05 +0000 | [diff] [blame] | 24 |   --> | 
 | 25 |  | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 26 |   <groupId>de.ids_mannheim.korap</groupId> | 
| Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 27 |   <artifactId>Krill</artifactId> | 
| Akron | 203974f | 2015-09-29 19:12:13 +0200 | [diff] [blame] | 28 |   <version>0.54</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 29 |   <packaging>jar</packaging> | 
 | 30 |  | 
| Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 31 |   <name>Krill</name> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 32 |   <url>http://www.ids-mannheim.de/</url> | 
 | 33 |  | 
 | 34 |   <organization> | 
 | 35 |     <name>IDS Mannheim</name> | 
 | 36 |     <url>http://www.ids-mannheim.de/</url> | 
 | 37 |   </organization> | 
 | 38 |  | 
 | 39 |   <developers> | 
 | 40 |     <developer> | 
 | 41 |       <name>Nils Diewald</name> | 
 | 42 |       <email>diewald@ids-mannheim.de</email> | 
 | 43 |       <url>http://nils-diewald.de</url> | 
 | 44 |     </developer> | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 45 |     <developer> | 
 | 46 |       <name>Eliza Margaretha</name> | 
 | 47 |       <email>margaretha@ids-mannheim.de</email> | 
 | 48 |     </developer> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 49 |   </developers> | 
 | 50 |  | 
 | 51 |   <properties> | 
| Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 52 |     <jersey.version>2.15</jersey.version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 53 |     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
 | 54 |   </properties> | 
 | 55 |  | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 56 |   <dependencyManagement> | 
 | 57 |     <dependencies> | 
 | 58 |       <dependency> | 
 | 59 |         <groupId>org.glassfish.jersey</groupId> | 
 | 60 |         <artifactId>jersey-bom</artifactId> | 
 | 61 |         <version>${jersey.version}</version> | 
 | 62 |         <type>pom</type> | 
 | 63 |         <scope>import</scope> | 
 | 64 |       </dependency> | 
 | 65 |     </dependencies> | 
 | 66 |   </dependencyManagement> | 
 | 67 |  | 
| Eliza Margaretha | a929f27 | 2014-11-28 14:10:05 +0000 | [diff] [blame] | 68 |   <dependencies>	 | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 69 |     <!-- junit dependency --> | 
 | 70 |     <dependency> | 
 | 71 |       <groupId>junit</groupId> | 
 | 72 |       <artifactId>junit</artifactId> | 
 | 73 |       <version>4.11</version> | 
 | 74 |       <scope>test</scope> | 
 | 75 |     </dependency> | 
 | 76 |  | 
 | 77 |     <!-- log4j dependency --> | 
 | 78 |     <dependency> | 
 | 79 |       <groupId>log4j</groupId> | 
 | 80 |       <artifactId>log4j</artifactId> | 
 | 81 |       <version>1.2.17</version> | 
 | 82 |     </dependency> | 
 | 83 |     <dependency> | 
 | 84 |       <groupId>org.slf4j</groupId> | 
 | 85 |       <artifactId>slf4j-log4j12</artifactId> | 
 | 86 |       <version>1.7.5</version> | 
 | 87 |     </dependency> | 
| Marc Kupietz | a61d2ba | 2015-03-20 16:30:26 +0100 | [diff] [blame] | 88 |     <dependency> | 
 | 89 |       <groupId>org.slf4j</groupId> | 
 | 90 |       <artifactId>jul-to-slf4j</artifactId> | 
 | 91 |       <version>1.7.5</version> | 
 | 92 |     </dependency> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 93 |  | 
| Nils Diewald | 6aa929e | 2014-09-17 13:30:34 +0000 | [diff] [blame] | 94 |     <!-- SQLite for database connection tests --> | 
 | 95 |     <dependency> | 
 | 96 |       <groupId>org.xerial</groupId> | 
 | 97 |       <artifactId>sqlite-jdbc</artifactId> | 
 | 98 |       <version>3.7.2</version> | 
 | 99 |     </dependency> | 
 | 100 |  | 
 | 101 |     <!-- Database Connection Pool Manager --> | 
 | 102 |     <dependency> | 
 | 103 |       <groupId>c3p0</groupId> | 
 | 104 |       <artifactId>c3p0</artifactId> | 
 | 105 |       <version>0.9.1.2</version> | 
 | 106 |     </dependency> | 
| Nils Diewald | e26f03f | 2014-06-04 17:48:53 +0000 | [diff] [blame] | 107 |      | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 108 |     <!-- Lucene core dependency --> | 
 | 109 |     <dependency> | 
 | 110 |       <artifactId>lucene-core</artifactId> | 
 | 111 |       <groupId>org.apache.lucene</groupId> | 
 | 112 |       <type>jar</type> | 
| Akron | 2d99e39 | 2015-09-30 00:48:33 +0200 | [diff] [blame^] | 113 |       <version>5.3.1</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 114 |     </dependency> | 
 | 115 |  | 
 | 116 |     <!-- Lucene queryparser dependency --> | 
 | 117 |     <dependency> | 
 | 118 |       <artifactId>lucene-queryparser</artifactId> | 
 | 119 |       <groupId>org.apache.lucene</groupId> | 
 | 120 |       <type>jar</type> | 
| Akron | 2d99e39 | 2015-09-30 00:48:33 +0200 | [diff] [blame^] | 121 |       <version>5.3.1</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 122 |     </dependency> | 
 | 123 |  | 
 | 124 |     <!-- Lucene analyzers dependency --> | 
 | 125 |     <dependency> | 
 | 126 |       <artifactId>lucene-analyzers-common</artifactId> | 
 | 127 |       <groupId>org.apache.lucene</groupId> | 
 | 128 |       <type>jar</type> | 
| Akron | 2d99e39 | 2015-09-30 00:48:33 +0200 | [diff] [blame^] | 129 |       <version>5.3.1</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 130 |     </dependency> | 
 | 131 |  | 
| Nils Diewald | 8a1fc01 | 2014-02-19 15:23:33 +0000 | [diff] [blame] | 132 |     <dependency> | 
 | 133 |       <groupId>org.hamcrest</groupId> | 
 | 134 |       <artifactId>hamcrest-core</artifactId> | 
 | 135 |       <version>1.3</version> | 
 | 136 |     </dependency> | 
 | 137 |  | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 138 |     <!-- JCache --> | 
 | 139 |     <dependency> | 
 | 140 |       <groupId>net.sf.jsr107cache</groupId> | 
 | 141 |       <artifactId>jsr107cache</artifactId> | 
 | 142 |       <version>1.0</version> | 
 | 143 |     </dependency> | 
 | 144 |  | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 145 |     <!-- Jersey --> | 
 | 146 |     <dependency> | 
 | 147 |       <groupId>org.glassfish.jersey.containers</groupId> | 
 | 148 |       <artifactId>jersey-container-grizzly2-http</artifactId> | 
 | 149 |     </dependency> | 
 | 150 |  | 
 | 151 |     <dependency> | 
 | 152 |       <groupId>com.sun.jersey.contribs</groupId> | 
 | 153 |       <artifactId>jersey-freemarker</artifactId> | 
 | 154 |       <version>1.13-b01</version> | 
 | 155 |     </dependency> | 
 | 156 |  | 
| Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 157 |     <!-- JSON support in Jersey --> | 
| Marc Kupietz | a61d2ba | 2015-03-20 16:30:26 +0100 | [diff] [blame] | 158 |     <dependency> | 
 | 159 |       <groupId>com.fasterxml.jackson.jaxrs</groupId> | 
 | 160 |       <artifactId>jackson-jaxrs-json-provider</artifactId> | 
 | 161 |       <version>2.4.4</version> | 
 | 162 |     </dependency> | 
| Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 163 |     <!-- | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 164 |     <dependency> | 
 | 165 |       <groupId>org.glassfish.jersey.media</groupId> | 
 | 166 |       <artifactId>jersey-media-moxy</artifactId> | 
 | 167 |     </dependency> | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 168 |     <dependency> | 
| Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 169 |       <groupId>com.sun.jersey</groupId> | 
 | 170 |       <artifactId>jersey-json</artifactId> | 
 | 171 |       <version>1.9</version> | 
 | 172 |     </dependency> | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 173 |     <dependency> | 
 | 174 |       <groupId>org.glassfish.jersey.media</groupId> | 
 | 175 |       <artifactId>jersey-media-json-jackson</artifactId> | 
 | 176 |       <version>2.16</version> | 
 | 177 |     </dependency> | 
| Nils Diewald | bbd39a5 | 2015-02-23 19:56:57 +0000 | [diff] [blame] | 178 |     --> | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 179 |  | 
| Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 180 |     <!-- JSON support using Jackson --> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 181 |     <!-- see https://github.com/FasterXML/jackson-core --> | 
 | 182 |     <!-- https://github.com/FasterXML/jackson-databind --> | 
 | 183 |     <dependency> | 
 | 184 |       <groupId>com.fasterxml.jackson.core</groupId> | 
 | 185 |       <artifactId>jackson-databind</artifactId> | 
| Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 186 |       <version>2.4.4</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 187 |     </dependency> | 
 | 188 |     <dependency> | 
 | 189 |       <groupId>com.fasterxml.jackson.core</groupId> | 
 | 190 |       <artifactId>jackson-annotations</artifactId> | 
| Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 191 |       <version>2.4.4</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 192 |     </dependency> | 
 | 193 |     <dependency> | 
 | 194 |       <groupId>com.fasterxml.jackson.core</groupId> | 
 | 195 |       <artifactId>jackson-core</artifactId> | 
| Nils Diewald | cb8afb3 | 2015-02-04 21:12:37 +0000 | [diff] [blame] | 196 |       <version>2.4.4</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 197 |     </dependency> | 
| Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 198 |  | 
 | 199 |     <!-- JSON-LD support --> | 
 | 200 |     <!-- | 
 | 201 |     <dependency> | 
 | 202 |       <groupId>com.github.jsonld-java</groupId> | 
 | 203 |       <artifactId>jsonld-java</artifactId> | 
 | 204 |       <version>0.5.2-SNAPSHOT</version> | 
 | 205 |     </dependency> | 
| Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 206 |  | 
| Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 207 |     Temporarily disable @Experimental annotation | 
| Eliza Margaretha | a929f27 | 2014-11-28 14:10:05 +0000 | [diff] [blame] | 208 |     <dependency> | 
| Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 209 |       <groupId>KorapAnnotationProcessor</groupId> | 
 | 210 |       <artifactId>KorapAnnotationProcessor</artifactId> | 
 | 211 |       <version>0.0.1-SNAPSHOT</version> | 
 | 212 |       <scope>compile</scope> | 
 | 213 |     </dependency> | 
| Nils Diewald | f5ab4b2 | 2015-02-25 20:55:16 +0000 | [diff] [blame] | 214 |     --> | 
 | 215 |  | 
| Akron | 484c3c1 | 2015-07-07 20:25:44 +0200 | [diff] [blame] | 216 |     <!-- Some language extensions like StringUtil --> | 
 | 217 |     <dependency> | 
 | 218 |       <groupId>commons-lang</groupId> | 
 | 219 |       <artifactId>commons-lang</artifactId> | 
 | 220 |       <version>2.3</version> | 
 | 221 |     </dependency> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 222 |   </dependencies> | 
 | 223 |  | 
 | 224 |   <build> | 
 | 225 |     <sourceDirectory>${basedir}/src/main/java</sourceDirectory> | 
 | 226 |     <outputDirectory>${basedir}/bin</outputDirectory> | 
 | 227 |     <plugins> | 
 | 228 |       <plugin> | 
| Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 229 | 	<artifactId>maven-compiler-plugin</artifactId> | 
 | 230 | 	<version>2.5.1</version> | 
 | 231 | 	<inherited>true</inherited> | 
 | 232 | 	<configuration> | 
 | 233 | 	  <showWarnings>true</showWarnings> | 
 | 234 | 	  <source>1.7</source> | 
 | 235 | 	  <target>1.7</target> | 
 | 236 | 	</configuration> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 237 |       </plugin> | 
| Nils Diewald | aee4545 | 2013-11-27 22:35:55 +0000 | [diff] [blame] | 238 |  | 
| Nils Diewald | aee4545 | 2013-11-27 22:35:55 +0000 | [diff] [blame] | 239 |       <plugin> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 240 |         <groupId>org.apache.maven.plugins</groupId> | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 241 |         <artifactId>maven-shade-plugin</artifactId> | 
 | 242 |         <version>2.4.1</version> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 243 |         <executions> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 244 |           <execution> | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 245 | 	    <id>indexer</id> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 246 |             <phase>package</phase> | 
 | 247 |             <goals> | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 248 |               <goal>shade</goal> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 249 |             </goals> | 
 | 250 |             <configuration> | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 251 |               <transformers> | 
 | 252 |                 <transformer | 
 | 253 | 		    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | 
 | 254 |                   <mainClass>de.ids_mannheim.korap.index.Indexer</mainClass> | 
 | 255 |                 </transformer> | 
 | 256 |               </transformers> | 
 | 257 | 	      <finalName>${project.artifactId}-Indexer</finalName> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 258 |             </configuration> | 
 | 259 |           </execution> | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 260 |           <execution> | 
 | 261 | 	    <id>server</id> | 
 | 262 |             <phase>package</phase> | 
 | 263 |             <goals> | 
 | 264 |               <goal>shade</goal> | 
 | 265 |             </goals> | 
 | 266 |             <configuration> | 
 | 267 |               <transformers> | 
 | 268 |                 <transformer | 
 | 269 | 		    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | 
 | 270 |                   <mainClass>de.ids_mannheim.korap.server.Node</mainClass> | 
 | 271 |                 </transformer> | 
 | 272 |                 <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> | 
 | 273 |                   <resource>krill.properties</resource> | 
 | 274 |                 </transformer> | 
 | 275 |               </transformers> | 
 | 276 | 	      <finalName>${project.name}-Server</finalName> | 
 | 277 |             </configuration> | 
 | 278 |           </execution> | 
 | 279 |         </executions> | 
| Nils Diewald | aee4545 | 2013-11-27 22:35:55 +0000 | [diff] [blame] | 280 |       </plugin> | 
| Akron | 09ae373 | 2015-08-13 20:56:20 +0200 | [diff] [blame] | 281 |  | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 282 |       <plugin> | 
| Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 283 |         <groupId>org.apache.maven.plugins</groupId> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 284 |         <artifactId>maven-surefire-plugin</artifactId> | 
| Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 285 |         <version>2.16</version> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 286 |         <configuration> | 
| Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 287 |           <excludes> | 
| Nils Diewald | efb9c9a | 2014-02-20 15:05:18 +0000 | [diff] [blame] | 288 |             <exclude>**/benchmark/*</exclude> | 
| Eliza Margaretha | 78d2cd1 | 2014-03-10 12:44:40 +0000 | [diff] [blame] | 289 |             <exclude>**/TestWPDIndex.java</exclude> | 
| Nils Diewald | 32912a6 | 2014-11-11 01:57:45 +0000 | [diff] [blame] | 290 |             <exclude>**/TestRealIndex.java</exclude> | 
| Nils Diewald | 22efd2d | 2013-11-29 22:54:24 +0000 | [diff] [blame] | 291 | 	  </excludes> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 292 |         </configuration> | 
 | 293 |       </plugin>  | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 294 |  | 
| Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 295 |       <!-- | 
| Nils Diewald | d86c068 | 2014-12-05 20:46:26 +0000 | [diff] [blame] | 296 | 	  Formatter plugin for Eclipse based coding conventions | 
| Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 297 | 	  http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/usage.html | 
| Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 298 |       --> | 
 | 299 |       <plugin> | 
 | 300 |         <groupId>com.googlecode.maven-java-formatter-plugin</groupId> | 
 | 301 |         <artifactId>maven-java-formatter-plugin</artifactId> | 
 | 302 |         <version>0.4</version> | 
| Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 303 | 	<configuration> | 
| Nils Diewald | 857c958 | 2015-03-03 21:16:14 +0000 | [diff] [blame] | 304 | 	  <configFile>${project.basedir}/Format.xml</configFile> | 
| Nils Diewald | 5c63ab8 | 2014-12-04 22:53:20 +0000 | [diff] [blame] | 305 | 	  <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> | 
 | 306 | 	  <compilerSource>1.7</compilerSource> | 
 | 307 | 	  <compilerCompliance>1.7</compilerCompliance> | 
 | 308 | 	  <compilerTargetPlatform>1.7</compilerTargetPlatform> | 
 | 309 | 	</configuration> | 
| Nils Diewald | 2f2b067 | 2014-11-25 20:26:22 +0000 | [diff] [blame] | 310 |       </plugin> | 
 | 311 |  | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 312 |       <plugin> | 
 | 313 |         <groupId>org.codehaus.mojo</groupId> | 
 | 314 |         <artifactId>exec-maven-plugin</artifactId> | 
 | 315 |         <version>1.2.1</version> | 
 | 316 |         <executions> | 
 | 317 |           <execution> | 
 | 318 |             <goals> | 
 | 319 |               <goal>java</goal> | 
 | 320 |             </goals> | 
 | 321 |           </execution> | 
 | 322 |         </executions> | 
 | 323 |         <configuration> | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 324 |           <mainClass>de.ids_mannheim.korap.server.Node</mainClass> | 
| Nils Diewald | 32030a6 | 2014-09-03 20:16:50 +0000 | [diff] [blame] | 325 |         </configuration> | 
 | 326 |       </plugin> | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 327 |     </plugins> | 
| Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 328 |  | 
 | 329 |     <resources> | 
 | 330 |       <resource> | 
 | 331 |         <directory>src/main/resources</directory> | 
 | 332 |         <filtering>true</filtering> | 
 | 333 | 	<includes> | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 334 | 	  <include>krill.properties</include> | 
| Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 335 | 	</includes> | 
 | 336 |       </resource> | 
 | 337 |       <resource> | 
 | 338 |         <directory>src/main/resources</directory> | 
 | 339 |         <filtering>false</filtering> | 
 | 340 | 	<excludes> | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 341 | 	  <exclude>krill.properties</exclude> | 
| Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 342 | 	</excludes> | 
 | 343 |       </resource> | 
 | 344 |     </resources>  | 
 | 345 |  | 
 | 346 |     <testResources> | 
 | 347 |       <testResource> | 
 | 348 |         <directory>src/test/resources</directory> | 
 | 349 |         <filtering>true</filtering> | 
 | 350 | 	<includes> | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 351 | 	  <include>krill.properties</include> | 
| Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 352 | 	</includes> | 
 | 353 |       </testResource> | 
 | 354 |       <testResource> | 
 | 355 |         <directory>src/test/resources</directory> | 
 | 356 |         <filtering>false</filtering> | 
 | 357 | 	<excludes> | 
| Nils Diewald | e50bae0 | 2015-03-03 22:08:30 +0000 | [diff] [blame] | 358 | 	  <exclude>krill.properties</exclude> | 
| Nils Diewald | cdd465b | 2014-02-24 18:47:38 +0000 | [diff] [blame] | 359 | 	</excludes> | 
 | 360 |       </testResource> | 
 | 361 |     </testResources>  | 
| Nils Diewald | f399a67 | 2013-11-18 17:55:22 +0000 | [diff] [blame] | 362 |   </build> | 
 | 363 | </project> |