-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
112 lines (98 loc) · 4.04 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
106
107
108
109
110
111
112
<!--
Copyright 2017 The Mochalog-SARL-Beliefs Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>io.mochalog</groupId>
<artifactId>io.mochalog.sarl.beliefs</artifactId>
<version>0.2.1</version>
<!-- Mochalog-SARL-Beliefs properties -->
<properties>
<!-- SARL framework version and configuration -->
<sarl.version>0.5.8</sarl.version>
<compiler.level>1.8</compiler.level>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Janus project version -->
<janus.version>2.${sarl.version}</janus.version>
<!-- Mochalog framework version -->
<mochalog.version>bfe4303fa7</mochalog.version>
<!-- JUnit version -->
<junit.version>4.12</junit.version>
</properties>
<!-- Repository definitions -->
<pluginRepositories>
<pluginRepository>
<id>maven.sarl.io</id>
<name>SARL Maven Repository</name>
<url>http://maven.sarl.io/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>maven.sarl.io</id>
<name>SARL Maven Repository</name>
<url>http://maven.sarl.io/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- JitPack used for remote installation of dependencies from Github -->
<repository>
<id>jitpack.io</id>
<name>JitPack Repository</name>
<url>https://jitpack.io</url>
</repository>
</repositories>
<!-- Project dependencies -->
<dependencies>
<!-- Janus Project kernel (contains SARL language core) -->
<dependency>
<groupId>io.janusproject</groupId>
<artifactId>io.janusproject.kernel</artifactId>
<version>${janus.version}</version>
</dependency>
<!-- Mochalog interface for SWI-Prolog -->
<dependency>
<groupId>com.github.mochalog</groupId>
<artifactId>mochalog</artifactId>
<version>${mochalog.version}</version>
</dependency>
<!-- JUnit testing framework -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
<!-- Build pipeline plugins -->
<build>
<plugins>
<plugin>
<!-- SARL Maven compiler plugin -->
<!-- Facilitate compilation of SARL source code to Java classes -->
<groupId>io.sarl.maven</groupId>
<artifactId>sarl-maven-plugin</artifactId>
<version>${sarl.version}</version>
<extensions>true</extensions>
<configuration>
<source>${compiler.level}</source>
<target>${compiler.level}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>