Skip to content

Commit f54f7f4

Browse files
committed
Merge branch 'release/1.3.0'
2 parents 9a8d5bd + a0a2f48 commit f54f7f4

File tree

145 files changed

+635
-20702
lines changed

Some content is hidden

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

145 files changed

+635
-20702
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ target/
44
.settings/
55
.DS_STORE
66
javadoc
7+
.idea/
8+
json-wikipedia.iml

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
language: java
22
jdk:
3-
- oraclejdk7
3+
- openjdk8
44

55
cache:
66
directories:
77
- $HOME/.m2
88

9+
script: make test
10+
911
notifications:
1012
email: false
1113
hipchat:

Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
default:
2+
3+
test:
4+
mvn -U test
5+
6+
build:
7+
mvn clean test assembly:assembly
8+
9+
clean:
10+
mvn clean
11+
12+
# phonies
13+
14+
.PHONY: default test build clean

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.3
1+
1.3.0

pom.xml

+53-16
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<properties>
1616
<project.source.charset>UTF-8</project.source.charset>
1717
<project.source.encoding>UTF-8</project.source.encoding>
18-
<java.version.source>1.6</java.version.source>
19-
<java.version.target>1.6</java.version.target>
18+
<java.version.source>1.8</java.version.source>
19+
<java.version.target>1.8</java.version.target>
2020
<project.customVersion>${project.version}</project.customVersion>
2121
</properties>
2222
<developers>
@@ -33,19 +33,14 @@
3333
<scope> test </scope>
3434
</dependency>
3535
<dependency>
36-
<groupId>com.github.idio</groupId>
37-
<artifactId>bliki</artifactId>
38-
<version>3.1.1</version>
36+
<groupId>info.bliki.wiki</groupId>
37+
<artifactId>bliki-core</artifactId>
38+
<version>3.1.1-SNAPSHOT</version>
3939
</dependency>
4040
<dependency>
41-
<groupId>com.github.idio</groupId>
41+
<groupId>com.github.diegoceccarelli</groupId>
4242
<artifactId>hpc-utils</artifactId>
43-
<version>0.0.7</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.apache.lucene</groupId>
47-
<artifactId>lucene-core</artifactId>
48-
<version>4.3.0</version>
43+
<version>-b47808d4d9-1</version>
4944
</dependency>
5045
<dependency>
5146
<groupId>xerces</groupId>
@@ -77,16 +72,40 @@
7772
<artifactId>commons-lang3</artifactId>
7873
<version>3.1</version>
7974
</dependency>
80-
75+
<dependency>
76+
<groupId>de.tudarmstadt.ukp.wikipedia</groupId>
77+
<artifactId>de.tudarmstadt.ukp.wikipedia.api</artifactId>
78+
<version>1.1.0</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>de.tudarmstadt.ukp.wikipedia</groupId>
82+
<artifactId>de.tudarmstadt.ukp.wikipedia.parser</artifactId>
83+
<version>1.1.0</version>
84+
</dependency>
85+
<dependency>
86+
<groupId>de.tudarmstadt.ukp.wikipedia</groupId>
87+
<artifactId>de.tudarmstadt.ukp.wikipedia.datamachine</artifactId>
88+
<version>1.1.0</version>
89+
</dependency>
90+
<dependency>
91+
<groupId>de.tudarmstadt.ukp.wikipedia</groupId>
92+
<artifactId>de.tudarmstadt.ukp.wikipedia.revisionmachine</artifactId>
93+
<version>1.1.0</version>
94+
</dependency>
95+
<dependency>
96+
<groupId>de.tudarmstadt.ukp.wikipedia</groupId>
97+
<artifactId>de.tudarmstadt.ukp.wikipedia.timemachine</artifactId>
98+
<version>1.1.0</version>
99+
</dependency>
81100
<dependency>
82101
<groupId>org.apache.spark</groupId>
83-
<artifactId>spark-core_2.10</artifactId>
84-
<version>1.3.1</version>
102+
<artifactId>spark-core_2.11</artifactId>
103+
<version>2.1.1</version>
85104
</dependency>
86105
<dependency>
87106
<groupId>org.scala-lang</groupId>
88107
<artifactId>scala-library</artifactId>
89-
<version>2.10.4</version>
108+
<version>2.11.8</version>
90109
</dependency>
91110
<dependency>
92111
<groupId>org.hibernate</groupId>
@@ -171,11 +190,28 @@
171190
<enabled>false</enabled>
172191
</snapshots>
173192
</repository>
193+
<repository>
194+
<id>dropbox</id>
195+
<url>https://dl.dropboxusercontent.com/u/4663256/mvn-repository/</url>
196+
</repository>
197+
<repository>
198+
<id>sonatype-snapshots</id>
199+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
200+
</repository>
201+
<repository>
202+
<id>de.tudarmstadt.ukp.wikipedia</id>
203+
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/</url>
204+
<snapshots>
205+
<enabled>true</enabled>
206+
<updatePolicy>always</updatePolicy>
207+
</snapshots>
208+
</repository>
174209
</repositories>
175210
<build>
176211
<plugins>
177212
<plugin>
178213
<artifactId>maven-compiler-plugin</artifactId>
214+
<version>3.7.0</version>
179215
<configuration>
180216
<charset>${project.source.charset}</charset>
181217
<encoding>${project.source.encoding}</encoding>
@@ -205,6 +241,7 @@
205241
<plugin>
206242
<groupId>net.alchim31.maven</groupId>
207243
<artifactId>scala-maven-plugin</artifactId>
244+
<version>3.3.1</version>
208245
<executions>
209246
<execution>
210247
<id>scala-compile-first</id>

0 commit comments

Comments
 (0)