-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
80 lines (70 loc) · 2.65 KB
/
pom.xml
File metadata and controls
80 lines (70 loc) · 2.65 KB
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
<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>mygroup</groupId>
<artifactId>jadex-example-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<!-- Specify desired Jadex version here. -->
<jadex.version>3.0.43</jadex.version>
</properties>
<!-- Additional repositories (only required when using nightlies and/or pro version of Jadex). -->
<repositories>
<repository>
<id>jadex-oss-releases</id>
<url>https://nexus.actoron.com/content/repositories/oss</url>
</repository>
<repository>
<id>jadex-oss-nightlies</id>
<url>https://nexus.actoron.com/content/repositories/oss-nightlies</url>
</repository>
<repository>
<id>jadex-pro-releases</id>
<url>http://nexus.actoron.com/nexus/content/repositories/pro</url>
</repository>
<repository>
<id>jadex-pro-nightlies</id>
<url>http://nexus.actoron.com/nexus/content/repositories/pro-nightlies</url>
</repository>
</repositories>
<build>
<resources>
<!-- Allow ADF files (.xml, .bpmn, ...) be placed in source folder -->
<resource>
<directory>src/main/java</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/.svn/*</exclude>
</excludes>
</resource>
</resources>
</build>
<dependencies>
<!-- For simplicity, several default Jadex distributions
are provided as Maven artifacts as shown below.
Advanced developers might prefer, to include direct dependencies
to single Jadex artifacts instead (e.g. jadex-kernel-bdi),
for more fine-grained control over the dependencies. -->
<!-- Platform for execution
Minimal: only component and micro kernel, no gui
Standard: Minimal + all kernels and gui tools, envsupport and AGR extension
Pro: Standard + all commercial add-ons (requires access to pro-repository)
-->
<dependency>
<groupId>org.activecomponents.jadex</groupId>
<artifactId>jadex-distribution-standard</artifactId>
<!-- <artifactId>jadex-distribution-minimal</artifactId> -->
<!-- <artifactId>jadex-distribution-pro</artifactId> -->
<version>${jadex.version}</version>
</dependency>
<!-- Webservice extension (enable if needed) -->
<!--
<dependency>
<groupId>org.activecomponents.jadex</groupId>
<artifactId>jadex-platform-extension-webservice</artifactId>
<version>${jadex.version}</version>
</dependency>
-->
</dependencies>
</project>