Revision 2f87024e

b/pom.xml
100 100
  <properties>
101 101
    <scala.version>2.9.1</scala.version>
102 102
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
103
    <project.reporting.outputEncoding>${project.build.sourceEncoding}
104
    </project.reporting.outputEncoding>
103
    <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
105 104
  </properties>
106 105

  
107 106
  <!-- Lib and plugin repositories -->
......
151 150
      <artifactId>scala-library</artifactId>
152 151
      <version>${scala.version}</version>
153 152
    </dependency>
153

  
154 154
    <dependency>
155 155
      <groupId>org.slf4j</groupId>
156 156
      <artifactId>slf4j-api</artifactId>
157 157
      <version>1.6.1</version>
158 158
    </dependency>
159

  
159 160
    <dependency>
160 161
      <groupId>ch.qos.logback</groupId>
161 162
      <artifactId>logback-classic</artifactId>
162 163
      <version>0.9.29</version>
163 164
    </dependency>
165

  
164 166
    <dependency>
165 167
      <groupId>org.scala-lang</groupId>
166 168
      <artifactId>scala-compiler</artifactId>
167 169
      <version>${scala.version}</version>
168 170
    </dependency>
171

  
169 172
    <dependency>
170 173
      <groupId>junit</groupId>
171 174
      <artifactId>junit</artifactId>
......
173 176
      <scope>test</scope>
174 177
    </dependency>
175 178

  
176
    <!--<dependency>-->
177
      <!--<groupId>com.fasterxml.jackson.core</groupId>-->
178
      <!--<artifactId>jackson-core</artifactId>-->
179
      <!--<version>2.0.2</version>-->
180
    <!--</dependency>-->
181

  
182
    <!--<dependency>-->
183
      <!--<groupId>com.fasterxml.jackson.core</groupId>-->
184
      <!--<artifactId>jackson-databind</artifactId>-->
185
      <!--<version>2.0.2</version>-->
186
    <!--</dependency>-->
187

  
188
    <!--<dependency>-->
189
      <!--<groupId>com.fasterxml.jackson.module</groupId>-->
190
      <!--<artifactId>jackson-module-scala</artifactId>-->
191
      <!--<version>2.0.2</version>-->
192
    <!--</dependency>-->
193

  
194 179
    <dependency>
195 180
      <groupId>net.liftweb</groupId>
196 181
      <artifactId>lift-json_2.9.1</artifactId>
......
314 299
      <artifactId>akka-slf4j</artifactId>
315 300
      <version>2.0.2</version>
316 301
    </dependency>
317
<!--
318
    <dependency>
319
      <groupId>se.scalablesolutions.akka</groupId>
320
      <artifactId>akka-testkit</artifactId>
321
      <version>1.3</version>
322
      <scope>test</scope>
323
    </dependency>-->
324 302

  
325 303
    <dependency>
326 304
      <groupId>com.twitter</groupId>
......
352 330
      <version>1.1</version>
353 331
    </dependency>
354 332

  
355
      <dependency> <!-- quartz stuff  -->
356
          <groupId>org.quartz-scheduler</groupId>
357
          <artifactId>quartz</artifactId>
358
          <version>2.1.5</version>
359
      </dependency>
360
      <dependency>
361
          <groupId>org.quartz-scheduler</groupId>
362
          <artifactId>quartz-oracle</artifactId>
363
          <version>2.1.5</version>
364
      </dependency>
365
      <dependency>
366
          <groupId>org.quartz-scheduler</groupId>
367
          <artifactId>quartz-weblogic</artifactId>
368
          <version>2.1.5</version>
369
      </dependency>
370
      <dependency>
371
          <groupId>org.quartz-scheduler</groupId>
372
          <artifactId>quartz-jboss</artifactId>
373
          <version>2.1.5</version>
374
      </dependency>
333
    <dependency> <!-- quartz stuff  -->
334
      <groupId>org.quartz-scheduler</groupId>
335
      <artifactId>quartz</artifactId>
336
      <version>2.1.5</version>
337
    </dependency>
338
    <dependency>
339
      <groupId>org.quartz-scheduler</groupId>
340
      <artifactId>quartz-oracle</artifactId>
341
      <version>2.1.5</version>
342
    </dependency>
343
    <dependency>
344
      <groupId>org.quartz-scheduler</groupId>
345
      <artifactId>quartz-weblogic</artifactId>
346
      <version>2.1.5</version>
347
    </dependency>
348
    <dependency>
349
      <groupId>org.quartz-scheduler</groupId>
350
      <artifactId>quartz-jboss</artifactId>
351
      <version>2.1.5</version>
352
    </dependency>
375 353

  
376 354
    <dependency>
377 355
      <groupId>org.apache.avro</groupId>
......
419 397
        <configuration>
420 398
          <source>1.6</source>
421 399
          <target>1.6</target>
400
          <encoding>${project.build.sourceEncoding}</encoding>
422 401
        </configuration>
423 402
      </plugin>
403

  
424 404
      <plugin>
425 405
        <groupId>net.alchim31.maven</groupId>
426 406
        <artifactId>scala-maven-plugin</artifactId>
......
456 436
          </execution>
457 437
        </executions>
458 438
      </plugin>
459
      <!-- Produces configuration files for Intellij Idea -->
460
      <plugin>
461
        <groupId>org.apache.maven.plugins</groupId>
462
        <artifactId>maven-idea-plugin</artifactId>
463
        <version>2.2</version>
464
        <configuration>
465
          <downloadSources>true</downloadSources>
466
          <downloadJavadocs>true</downloadJavadocs>
467
        </configuration>
468
      </plugin>
439

  
469 440
      <!-- Make sure tests display failures at the console-->
470 441
      <plugin>
471 442
        <groupId>org.apache.maven.plugins</groupId>
......
476 447
          <reportFormat>plain</reportFormat>
477 448
        </configuration>
478 449
      </plugin>
450

  
479 451
      <!-- Bundle up source code on release/snapshot -->
480 452
      <plugin>
481 453
        <groupId>org.apache.maven.plugins</groupId>
......
490 462
          </execution>
491 463
        </executions>
492 464
      </plugin>
465

  
493 466
      <!-- Release plug-in configuration -->
494 467
      <plugin>
495 468
        <groupId>org.apache.maven.plugins</groupId>

Also available in: Unified diff