Skip to content
This repository was archived by the owner on May 26, 2026. It is now read-only.

Commit b4e6c49

Browse files
committed
New mavenized version.
1 parent 54d1c50 commit b4e6c49

270 files changed

Lines changed: 12518 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

jedai-core/.classpath

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
10+
<attributes>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
13+
</attributes>
14+
</classpathentry>
15+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
16+
<attributes>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="output" path="target/classes"/>
26+
</classpath>

jedai-core/.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>JedAIToolkit</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/test/java=UTF-8
4+
encoding/<project>=UTF-8
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
3+
org.eclipse.jdt.core.compiler.compliance=1.8
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.8
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

jedai-core/pom.xml

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>jedai-core</groupId>
5+
<artifactId>jedai-core</artifactId>
6+
<version>1.1-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<maven.compiler.source>1.8</maven.compiler.source>
11+
<maven.compiler.target>1.8</maven.compiler.target>
12+
</properties>
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.jgrapht</groupId>
16+
<artifactId>jgrapht-core</artifactId>
17+
<version>0.9.0</version>
18+
</dependency>
19+
20+
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
21+
<dependency>
22+
<groupId>org.apache.commons</groupId>
23+
<artifactId>commons-lang3</artifactId>
24+
<version>3.4</version>
25+
</dependency>
26+
27+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-arq -->
28+
<dependency>
29+
<groupId>org.apache.jena</groupId>
30+
<artifactId>jena-arq</artifactId>
31+
<version>3.1.0</version>
32+
</dependency>
33+
34+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-base -->
35+
<dependency>
36+
<groupId>org.apache.jena</groupId>
37+
<artifactId>jena-base</artifactId>
38+
<version>3.1.0</version>
39+
</dependency>
40+
41+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-cmds -->
42+
<dependency>
43+
<groupId>org.apache.jena</groupId>
44+
<artifactId>jena-cmds</artifactId>
45+
<version>3.1.0</version>
46+
</dependency>
47+
48+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-core -->
49+
<dependency>
50+
<groupId>org.apache.jena</groupId>
51+
<artifactId>jena-core</artifactId>
52+
<version>3.1.0</version>
53+
</dependency>
54+
55+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-iri -->
56+
<dependency>
57+
<groupId>org.apache.jena</groupId>
58+
<artifactId>jena-iri</artifactId>
59+
<version>3.1.0</version>
60+
</dependency>
61+
62+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-shaded-guava -->
63+
<dependency>
64+
<groupId>org.apache.jena</groupId>
65+
<artifactId>jena-shaded-guava</artifactId>
66+
<version>3.1.0</version>
67+
</dependency>
68+
69+
<!-- https://mvnrepository.com/artifact/org.apache.jena/jena-tdb -->
70+
<dependency>
71+
<groupId>org.apache.jena</groupId>
72+
<artifactId>jena-tdb</artifactId>
73+
<version>3.1.0</version>
74+
</dependency>
75+
76+
<!-- https://mvnrepository.com/artifact/org.apache.lucene/lucene-core -->
77+
<dependency>
78+
<groupId>org.apache.lucene</groupId>
79+
<artifactId>lucene-core</artifactId>
80+
<version>6.0.1</version>
81+
</dependency>
82+
83+
<!-- https://mvnrepository.com/artifact/org.apache.lucene/lucene-analyzers-common -->
84+
<dependency>
85+
<groupId>org.apache.lucene</groupId>
86+
<artifactId>lucene-analyzers-common</artifactId>
87+
<version>6.0.1</version>
88+
</dependency>
89+
90+
<!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
91+
<dependency>
92+
<groupId>com.opencsv</groupId>
93+
<artifactId>opencsv</artifactId>
94+
<version>3.7</version>
95+
</dependency>
96+
97+
<!-- https://mvnrepository.com/artifact/org.jdom/jdom2 -->
98+
<dependency>
99+
<groupId>org.jdom</groupId>
100+
<artifactId>jdom2</artifactId>
101+
<version>2.0.6</version>
102+
</dependency>
103+
104+
<!-- http://backend1.scify.org:60004/artifactory/pub-release-local -->
105+
<dependency>
106+
<groupId>gr.demokritos</groupId>
107+
<artifactId>JInsect</artifactId>
108+
<version>1.1</version>
109+
</dependency>
110+
111+
112+
</dependencies>
113+
114+
<repositories>
115+
<repository>
116+
<id>backend1</id>
117+
<name>backend1-releases</name>
118+
<url>http://backend1.scify.org:60004/artifactory/pub-release-local</url>
119+
</repository>
120+
</repositories>
121+
</project>

0 commit comments

Comments
 (0)