scalasprayslickexample_2.11
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.vixxx123</groupId>
<artifactId>scalasprayslickexample_2.11</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.vixxx123</groupId>
<artifactId>scalasprayslickexample_2.11</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<name>scalasprayslickexample</name>
<organization>
<name>Wiktor Tychulski</name>
</organization>
<description>A library, which help build REST API based on scala\spray\slick with authorization and websocket support.</description>
<url>http://github.com/vixxx123/scalasprayslickexample</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/vixxx123/scalasprayslickexample</url>
<connection>scm:git:git://github.com/vixxx123/scalasprayslickexample.git</connection>
<developerConnection>scm:git:git@github.com:vixxx123/scalasprayslickexample.git</developerConnection>
</scm>
<developers>
<developer>
<id>vixxx123</id>
<name>Wiktor Tychulski</name>
<email>wiktor.tychulski@gmail.com</email>
</developer>
</developers>
<properties>
<scala.maven.plugin.version>3.2.0</scala.maven.plugin.version>
<scala.version.major>2.11</scala.version.major>
<scala.version>${scala.version.major}.7</scala.version>
<akka.version>2.3.7</akka.version>
<jackson.version>2.5.1</jackson.version>
<mysql.version>5.1.34</mysql.version>
<slick.version>2.1.0</slick.version>
<spray.version>1.3.3</spray.version>
<spray.json.version>1.3.1</spray.json.version>
<c3p0.version>0.9.1.2</c3p0.version>
<scalatest.verion>2.2.1</scalatest.verion>
<typesafe.config.version>1.2.1</typesafe.config.version>
<websocket.version>0.1.4</websocket.version>
<mockito.version>1.10.19</mockito.version>
<surefire.plugin.version>2.18.1</surefire.plugin.version>
<junit.version>4.11</junit.version>
<oauth.version>0.13.3</oauth.version>
</properties>
<repositories>
<repository>
<id>scala-tools.org</id>
<name>Scala-Tools Maven2 Repository</name>
<url>http://repo.typesafe.com/typesafe/releases/</url>
</repository>
<repository>
<id>oss.sonatype.org</id>
<name>releases</name>
<url>http://oss.sonatype.org/content/repositories/releases</url>
</repository>
<repository>
<id>repo.spray.io</id>
<name>spray-repo</name>
<url>http://repo.spray.io</url>
</repository>
<repository>
<id>hairyfotr.github.io</id>
<name>releases</name>
<url>https://hairyfotr.github.io/linteRepo/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-reflect</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_${scala.version.major}</artifactId>
<version>${akka.version}</version>
</dependency>
<dependency>
<groupId>io.spray</groupId>
<artifactId>spray-can_${scala.version.major}</artifactId>
<version>${spray.version}</version>
</dependency>
<dependency>
<groupId>io.spray</groupId>
<artifactId>spray-httpx_${scala.version.major}</artifactId>
<version>${spray.version}</version>
</dependency>
<dependency>
<groupId>io.spray</groupId>
<artifactId>spray-json_${scala.version.major}</artifactId>
<version>${spray.json.version}</version>
</dependency>
<dependency>
<groupId>io.spray</groupId>
<artifactId>spray-routing_${scala.version.major}</artifactId>
<version>${spray.version}</version>
</dependency>
<dependency>
<groupId>io.spray</groupId>
<artifactId>spray-client_${scala.version.major}</artifactId>
<version>${spray.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe.slick</groupId>
<artifactId>slick_${scala.version.major}</artifactId>
<version>${slick.version}</version>
</dependency>
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>${c3p0.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_${scala.version.major}</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<version>${typesafe.config.version}</version>
</dependency>
<dependency>
<groupId>com.wandoulabs.akka</groupId>
<artifactId>spray-websocket_${scala.version.major}</artifactId>
<version>${websocket.version}</version>
</dependency>
<dependency>
<groupId>com.nulab-inc</groupId>
<artifactId>scala-oauth2-core_${scala.version.major}</artifactId>
<version>${oauth.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.version.major}</artifactId>
<version>${scalatest.verion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.foursquare.lint</groupId>
<artifactId>linter_${scala.version.major}</artifactId>
<version>0.1.9</version>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${scala.maven.plugin.version}</version>
<configuration>
<args>
<arg>-unchecked</arg>
<arg>-deprecation</arg>
<arg>-feature</arg>
<arg>-language:implicitConversions</arg>
<arg>-language:reflectiveCalls</arg>
<arg>-language:postfixOps</arg>
<arg>-Xfatal-warnings</arg>
</args>
<jvmArgs>
<jvmArg>-Xms64m</jvmArg>
<jvmArg>-Xmx1024m</jvmArg>
</jvmArgs>
<scalaVersion>${scala.version}</scalaVersion>
</configuration>
<executions>
<execution>
<id>add-scala-source</id>
<phase>initialize</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sourceDir>src/main/scala</sourceDir>
<testSourceDir>src/test/scala</testSourceDir>
</configuration>
</execution>
<execution>
<id>compile-scala-source</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>compile-scala-test</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<useFile>true</useFile>
<disableXmlReport>false</disableXmlReport>
<includes>
<include>**/*Test.*</include>
<include>**/*Spec.*</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<minmemory>64m</minmemory>
<maxmemory>2g</maxmemory>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>