-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
105 lines (100 loc) · 3.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cernoch.scalogic</groupId>
<artifactId>scalogic_${scala.version}</artifactId>
<version>1.2-SNAPSHOT</version>
<name>${project.artifactId}</name>
<description>First-order logic representation in Scala</description>
<inceptionYear>2012</inceptionYear>
<licenses><license><name>MIT-License</name>
<url>http://copyfree.org/licenses/mit/license.txt</url>
<distribution>repo</distribution></license></licenses>
<properties>
<encoding>UTF-8</encoding>
<scala.version>2.10</scala.version>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
<scm><url>https://github.com/cernoch/ScaLogic</url>
<connection>scm:git:https://github.com/cernoch/ScaLogic.git</connection>
<developerConnection>scm:git:[email protected]:cernoch/ScaLogic.git</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement><repository><id>heartofgold</id>
<url>scp://heartofgold.endofinternet.org:2222/srv/maven2</url>
</repository></distributionManagement>
<repositories>
<repository><id>heartofgold</id>
<url>http://heartofgold.endofinternet.org/maven2</url>
</repository>
</repositories>
<dependencies>
<!-- Main -->
<dependency><groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}.0</version></dependency>
<dependency><groupId>org.clapper</groupId>
<artifactId>grizzled-slf4j_${scala.version}</artifactId>
<version>1.0.1</version></dependency>
<!-- Test -->
<dependency><groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version><scope>test</scope></dependency>
<dependency><groupId>org.specs2</groupId>
<artifactId>specs2_${scala.version}</artifactId>
<version>1.14</version><scope>test</scope></dependency>
</dependencies>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<!-- Scala compiler -->
<plugin><groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>2.15.0</version>
<executions><execution>
<goals><goal>compile</goal><goal>testCompile</goal></goals>
<configuration><args>
<arg>-deprecation</arg><arg>-make:transitive</arg>
<arg>-dependencyfile</arg>
<arg>${project.build.directory}/.scala_dependencies</arg></args>
</configuration>
</execution></executions>
</plugin>
<!-- Test executor -->
<plugin><groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration><useFile>false</useFile>
<disableXmlReport>true</disableXmlReport>
<includes><include>**/*Test.*</include>
<include>**/*Suite.*</include></includes>
</configuration>
</plugin>
<!-- Release tool -->
<plugin><groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<scmCommentPrefix>Release:</scmCommentPrefix>
</configuration>
</plugin>
<!-- SCM plugin (for GIT) -->
<plugin><groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
<configuration>
<connectionType>developerConnection</connectionType>
</configuration>
</plugin>
</plugins>
<extensions>
<!-- SCP connector -->
<extension><groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0</version>
</extension>
</extensions>
</build>
</project>