Skip to content

Commit 117a50c

Browse files
author
Felix Mannhardt
committed
Release 0.0.1
1 parent 74d423f commit 117a50c

File tree

2 files changed

+94
-94
lines changed

2 files changed

+94
-94
lines changed

pom.xml

Lines changed: 93 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,94 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.xeslite</groupId>
5-
<artifactId>xeslite</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
7-
<name>XESLite</name>
8-
<url>https://github.com/fmannhardt/xeslite</url>
9-
<description>An alternative implementations of the XES standard for event logs.</description>
10-
<licenses>
11-
<license>
12-
<name>GNU Lesser General Public License v3.0 only</name>
13-
<url>http://www.spdx.org/licenses/LGPL-3.0</url>
14-
</license>
15-
</licenses>
16-
<scm>
17-
<url>https://github.com/fmannhardt/xeslite</url>
18-
</scm>
19-
<issueManagement>
20-
<url>https://github.com/fmannhardt/xeslite/issues</url>
21-
</issueManagement>
22-
<inceptionYear>2016</inceptionYear>
23-
<properties>
24-
<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
25-
</properties>
26-
<build>
27-
<plugins>
28-
<plugin>
29-
<artifactId>maven-compiler-plugin</artifactId>
30-
<configuration>
31-
<source>1.7</source>
32-
<target>1.7</target>
33-
</configuration>
34-
<version>3.2</version>
35-
</plugin>
36-
</plugins>
37-
</build>
38-
<repositories>
39-
<repository>
40-
<id>openxes-repo</id>
41-
<url>file:///${project.basedir}/openxes</url>
42-
</repository>
43-
</repositories>
44-
<dependencies>
45-
<!-- Not available on Maven, local copy -->
46-
<dependency>
47-
<groupId>org.deckfour</groupId>
48-
<artifactId>openxes</artifactId>
49-
<version>2.16</version>
50-
</dependency>
51-
<dependency>
52-
<groupId>com.google.guava</groupId>
53-
<artifactId>guava</artifactId>
54-
<version>20.0</version>
55-
</dependency>
56-
<dependency>
57-
<groupId>com.github.stephenc.high-scale-lib</groupId>
58-
<artifactId>high-scale-lib</artifactId>
59-
<version>1.1.4</version>
60-
</dependency>
61-
<dependency>
62-
<groupId>it.unimi.dsi</groupId>
63-
<artifactId>fastutil</artifactId>
64-
<version>7.0.13</version>
65-
</dependency>
66-
<dependency>
67-
<groupId>net.jpountz.lz4</groupId>
68-
<artifactId>lz4</artifactId>
69-
<version>1.3</version>
70-
</dependency>
71-
<dependency>
72-
<groupId>eu.danieldk.dictomaton</groupId>
73-
<artifactId>dictomaton</artifactId>
74-
<version>1.2.1</version>
75-
</dependency>
76-
<dependency>
77-
<groupId>org.mapdb</groupId>
78-
<artifactId>mapdb</artifactId>
79-
<version>2.0-beta13</version>
80-
</dependency>
81-
<dependency>
82-
<groupId>com.carrotsearch</groupId>
83-
<artifactId>java-sizeof</artifactId>
84-
<version>0.0.5</version>
85-
<scope>test</scope>
86-
</dependency>
87-
<dependency>
88-
<groupId>junit</groupId>
89-
<artifactId>junit</artifactId>
90-
<version>4.12</version>
91-
<scope>test</scope>
92-
</dependency>
93-
</dependencies>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.xeslite</groupId>
5+
<artifactId>xeslite</artifactId>
6+
<version>0.0.1</version>
7+
<name>XESLite</name>
8+
<url>https://github.com/fmannhardt/xeslite</url>
9+
<description>An alternative implementations of the XES standard for event logs.</description>
10+
<licenses>
11+
<license>
12+
<name>GNU Lesser General Public License v3.0 only</name>
13+
<url>http://www.spdx.org/licenses/LGPL-3.0</url>
14+
</license>
15+
</licenses>
16+
<scm>
17+
<url>https://github.com/fmannhardt/xeslite</url>
18+
</scm>
19+
<issueManagement>
20+
<url>https://github.com/fmannhardt/xeslite/issues</url>
21+
</issueManagement>
22+
<inceptionYear>2016</inceptionYear>
23+
<properties>
24+
<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
25+
</properties>
26+
<build>
27+
<plugins>
28+
<plugin>
29+
<artifactId>maven-compiler-plugin</artifactId>
30+
<configuration>
31+
<source>1.7</source>
32+
<target>1.7</target>
33+
</configuration>
34+
<version>3.2</version>
35+
</plugin>
36+
</plugins>
37+
</build>
38+
<repositories>
39+
<repository>
40+
<id>openxes-repo</id>
41+
<url>file:///${project.basedir}/openxes</url>
42+
</repository>
43+
</repositories>
44+
<dependencies>
45+
<!-- Not available on Maven, local copy -->
46+
<dependency>
47+
<groupId>org.deckfour</groupId>
48+
<artifactId>openxes</artifactId>
49+
<version>2.16</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>com.google.guava</groupId>
53+
<artifactId>guava</artifactId>
54+
<version>20.0</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>com.github.stephenc.high-scale-lib</groupId>
58+
<artifactId>high-scale-lib</artifactId>
59+
<version>1.1.4</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>it.unimi.dsi</groupId>
63+
<artifactId>fastutil</artifactId>
64+
<version>7.0.13</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>net.jpountz.lz4</groupId>
68+
<artifactId>lz4</artifactId>
69+
<version>1.3</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>eu.danieldk.dictomaton</groupId>
73+
<artifactId>dictomaton</artifactId>
74+
<version>1.2.1</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.mapdb</groupId>
78+
<artifactId>mapdb</artifactId>
79+
<version>2.0-beta13</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.carrotsearch</groupId>
83+
<artifactId>java-sizeof</artifactId>
84+
<version>0.0.5</version>
85+
<scope>test</scope>
86+
</dependency>
87+
<dependency>
88+
<groupId>junit</groupId>
89+
<artifactId>junit</artifactId>
90+
<version>4.12</version>
91+
<scope>test</scope>
92+
</dependency>
93+
</dependencies>
9494
</project>

src/main/java/org/xeslite/external/MapDBDatabaseImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import com.google.common.util.concurrent.ThreadFactoryBuilder;
1717

18-
public final class MapDBDatabaseImpl implements MapDBDatabase {
18+
public class MapDBDatabaseImpl implements MapDBDatabase {
1919

2020
private static final int SIZE_INCREMENT = 4 * 1024 * 1024;
2121
/**

0 commit comments

Comments
 (0)