Skip to content

Instantly share code, notes, and snippets.

@connollyst
Last active August 29, 2015 13:58
Show Gist options
  • Save connollyst/9958982 to your computer and use it in GitHub Desktop.
Save connollyst/9958982 to your computer and use it in GitHub Desktop.
pom for the jackson-module-scala bug report
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>jackson-module-scala-bug</artifactId>
<version>0.0.5-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<scala.version>2.9.1</scala.version>
<scala.plugin.version>2.15.2</scala.plugin.version>
<junit.version>4.11</junit.version>
<scalatest.version>1.8</scalatest.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>${scala.plugin.version}</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_${scala.version}</artifactId>
<version>2.3.2</version>
</dependency>
<!-- Unit Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.version}</artifactId>
<version>${scalatest.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment