-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
52 lines (44 loc) · 1.78 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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>
<parent>
<groupId>com.skraba.byexample</groupId>
<artifactId>byexample-scala-aggregator</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>scala-by-example</artifactId>
<packaging>jar</packaging>
<name>By Example :: Scala :: Scala</name>
<description>Scala example project, setup, howtos, etc.</description>
<properties>
<byexample.relBaseDir>../..</byexample.relBaseDir>
<maven.deploy.skip>false</maven.deploy.skip>
<scalafmt.conf.path>${project.basedir}/../../.scalafmt.conf</scalafmt.conf.path>
<!-- Launcher class -->
<exec.mainClass>com.skraba.byexample.scala.ScalaGo</exec.mainClass>
<!-- other project dependency versions as properties -->
<play-json.version>2.10.3</play-json.version>
</properties>
<dependencies>
<!-- {{Insert dependencies for specific project.}} -->
<dependency>
<groupId>com.offbytwo</groupId>
<artifactId>docopt</artifactId>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</dependency>
<!-- Necessary for dynamic compilation -->
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
</dependency>
<!-- Necessary for prettifying JSON code blocks -->
<dependency>
<groupId>com.typesafe.play</groupId>
<artifactId>play-json_${scala.binary.version}</artifactId>
<version>${play-json.version}</version>
</dependency>
</dependencies>
</project>