Skip to content

Commit 18c9670

Browse files
committed
Initial commit for the redesigned baseqa framework.
1 parent 0dfefe1 commit 18c9670

File tree

400 files changed

+10703
-16299
lines changed

Some content is hidden

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

400 files changed

+10703
-16299
lines changed

.classpath

+37-37
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
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 excluding="**" kind="src" output="target/classes" path="src/main/resources">
10-
<attributes>
11-
<attribute name="maven.pomderived" value="true"/>
12-
</attributes>
13-
</classpathentry>
14-
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15-
<attributes>
16-
<attribute name="optional" value="true"/>
17-
<attribute name="maven.pomderived" value="true"/>
18-
</attributes>
19-
</classpathentry>
20-
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
21-
<attributes>
22-
<attribute name="maven.pomderived" value="true"/>
23-
</attributes>
24-
</classpathentry>
25-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
26-
<attributes>
27-
<attribute name="maven.pomderived" value="true"/>
28-
</attributes>
29-
</classpathentry>
30-
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
31-
<attributes>
32-
<attribute name="maven.pomderived" value="true"/>
33-
</attributes>
34-
</classpathentry>
35-
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
36-
<classpathentry kind="output" path="target/classes"/>
37-
</classpath>
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 excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
</attributes>
29+
</classpathentry>
30+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
31+
<attributes>
32+
<attribute name="maven.pomderived" value="true"/>
33+
</attributes>
34+
</classpathentry>
35+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
36+
<classpathentry kind="output" path="target/classes"/>
37+
</classpath>

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
*.ear
77
/launches
88
/target
9+
/persistence

.project

-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13-
<buildCommand>
14-
<name>org.maven.ide.eclipse.maven2Builder</name>
15-
<arguments>
16-
</arguments>
17-
</buildCommand>
1813
<buildCommand>
1914
<name>org.eclipse.m2e.core.maven2Builder</name>
2015
<arguments>
@@ -23,7 +18,6 @@
2318
</buildSpec>
2419
<natures>
2520
<nature>org.eclipse.m2e.core.maven2Nature</nature>
26-
<nature>org.maven.ide.eclipse.maven2Nature</nature>
2721
<nature>org.eclipse.jdt.core.javanature</nature>
2822
</natures>
2923
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
#Fri May 25 18:19:58 EDT 2012
21
eclipse.preferences.version=1
32
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4-
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
54
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6-
org.eclipse.jdt.core.compiler.compliance=1.6
5+
org.eclipse.jdt.core.compiler.compliance=1.8
76
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
87
org.eclipse.jdt.core.compiler.debug.localVariable=generate
98
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
109
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
1110
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
1211
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
13-
org.eclipse.jdt.core.compiler.source=1.6
12+
org.eclipse.jdt.core.compiler.source=1.8

pom.xml

+73-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
21
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
32
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>edu.cmu.lti.oaqa.bio.core</groupId>
65
<artifactId>baseqa</artifactId>
76
<version>2.0.0-SNAPSHOT</version>
87
<parent>
9-
<groupId>org.sonatype.oss</groupId>
10-
<artifactId>oss-parent</artifactId>
11-
<version>7</version>
8+
<groupId>edu.cmu.lti.oaqa</groupId>
9+
<artifactId>oaqa</artifactId>
10+
<version>4</version>
1211
</parent>
1312
<name>Base Question Answering Pipeline</name>
1413
<url>https://github.com/oaqa/baseqa</url>
@@ -29,14 +28,41 @@
2928
<connection>scm:git:[email protected]:oaqa/baseqa.git</connection>
3029
<developerConnection>scm:git:[email protected]:oaqa/baseqa.git</developerConnection>
3130
</scm>
31+
<properties>
32+
<config>config</config>
33+
</properties>
3234
<build>
3335
<plugins>
36+
<plugin>
37+
<groupId>org.codehaus.mojo</groupId>
38+
<artifactId>exec-maven-plugin</artifactId>
39+
<executions>
40+
<execution>
41+
<goals>
42+
<goal>exec</goal>
43+
</goals>
44+
</execution>
45+
</executions>
46+
<configuration>
47+
<executable>java</executable>
48+
<arguments>
49+
<argument>-Xmx1500m</argument>
50+
<argument>-Djava.library.path=${project.build.directory}/lib/</argument>
51+
<argument>-classpath</argument>
52+
<!-- automatically creates the classpath using all project dependencies,
53+
also adding the project build directory -->
54+
<classpath />
55+
<argument>edu.cmu.lti.oaqa.ecd.driver.ECDDriver</argument>
56+
<argument>${config}</argument>
57+
</arguments>
58+
</configuration>
59+
</plugin>
3460
<plugin>
3561
<groupId>org.apache.maven.plugins</groupId>
3662
<artifactId>maven-compiler-plugin</artifactId>
3763
<configuration>
38-
<source>1.6</source>
39-
<target>1.6</target>
64+
<source>1.8</source>
65+
<target>1.8</target>
4066
</configuration>
4167
</plugin>
4268
<plugin>
@@ -53,11 +79,52 @@
5379
</plugin>
5480
</plugins>
5581
</build>
82+
<repositories>
83+
<repository>
84+
<id>oaqa</id>
85+
<url>http://mu.lti.cs.cmu.edu:8081/nexus/content/groups/public</url>
86+
</repository>
87+
<repository>
88+
<id>julman99-github</id>
89+
<url>https://raw.github.com/julman99/mvn-repo/master</url>
90+
</repository>
91+
<repository>
92+
<id>sonatype-nexus-snapshots</id>
93+
<name>Sonatype Nexus Snapshots</name>
94+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
95+
<releases>
96+
<enabled>false</enabled>
97+
</releases>
98+
<snapshots>
99+
<enabled>true</enabled>
100+
</snapshots>
101+
</repository>
102+
</repositories>
56103
<dependencies>
57104
<dependency>
58105
<groupId>edu.cmu.lti.oaqa.cse</groupId>
59106
<artifactId>cse-framework</artifactId>
60107
<version>2.3.3-SNAPSHOT</version>
61108
</dependency>
109+
<dependency>
110+
<groupId>edu.cmu.lti.oaqa.framework.impl</groupId>
111+
<artifactId>jdbc-providers</artifactId>
112+
<version>2.4.0-SNAPSHOT</version>
113+
</dependency>
114+
<dependency>
115+
<groupId>com.google.code.gson</groupId>
116+
<artifactId>gson</artifactId>
117+
<version>2.3</version>
118+
</dependency>
119+
<dependency>
120+
<groupId>com.github.julman99</groupId>
121+
<artifactId>gson-fire</artifactId>
122+
<version>0.8.1</version>
123+
</dependency>
124+
<dependency>
125+
<groupId>edu.cmu.lti.oaqa.ecd</groupId>
126+
<artifactId>uima-ecd</artifactId>
127+
<version>2.4.0-SNAPSHOT</version>
128+
</dependency>
62129
</dependencies>
63130
</project>

src/main/java/edu/cmu/lti/oaqa/baseqa/basephase/ie/AbstractPassageExtractor.java

-74
This file was deleted.

src/main/java/edu/cmu/lti/oaqa/baseqa/basephase/ie/AbstractPassageUpdater.java

-77
This file was deleted.

0 commit comments

Comments
 (0)