-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
75 lines (69 loc) · 2.75 KB
/
pom.xml
File metadata and controls
75 lines (69 loc) · 2.75 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
<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>
<artifactId>step2_persistence</artifactId>
<groupId>org.kevoree.modeling.tutorial</groupId>
<version>1-SNAPSHOT</version>
<name>Kevoree :: Modeling :: Tutorial :: Step2_Persistence</name>
<packaging>jar</packaging>
<properties>
<kmf.version>4.27.0</kmf.version>
<plugin.leveldb.version>4.27.0</plugin.leveldb.version>
<plugin.rocksdb.version>4.27.0</plugin.rocksdb.version>
</properties>
<dependencies>
<dependency>
<groupId>org.kevoree.modeling</groupId>
<artifactId>microframework</artifactId>
<version>${kmf.version}</version>
</dependency>
<!-- This dependency add the ability to leverage LevelDB backend to persist models -->
<dependency>
<groupId>org.kevoree.modeling.plugin</groupId>
<artifactId>leveldb</artifactId>
<version>${plugin.leveldb.version}</version>
</dependency>
<!-- Alternative persistent plugin to use another backend -->
<dependency>
<groupId>org.kevoree.modeling.plugin</groupId>
<artifactId>rocksdb</artifactId>
<version>${plugin.rocksdb.version}</version>
</dependency>
<!-- Test dependency -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.kevoree.modeling</groupId>
<artifactId>generator.mavenplugin</artifactId>
<version>${kmf.version}</version>
<executions>
<execution>
<id>ModelGen</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<metaModelFile>smartcity.mm</metaModelFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>