|
15 | 15 | <properties>
|
16 | 16 | <project.source.charset>UTF-8</project.source.charset>
|
17 | 17 | <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> |
20 | 20 | <project.customVersion>${project.version}</project.customVersion>
|
21 | 21 | </properties>
|
22 | 22 | <developers>
|
|
33 | 33 | <scope> test </scope>
|
34 | 34 | </dependency>
|
35 | 35 | <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> |
39 | 39 | </dependency>
|
40 | 40 | <dependency>
|
41 |
| - <groupId>com.github.idio</groupId> |
| 41 | + <groupId>com.github.diegoceccarelli</groupId> |
42 | 42 | <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> |
49 | 44 | </dependency>
|
50 | 45 | <dependency>
|
51 | 46 | <groupId>xerces</groupId>
|
|
77 | 72 | <artifactId>commons-lang3</artifactId>
|
78 | 73 | <version>3.1</version>
|
79 | 74 | </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> |
81 | 100 | <dependency>
|
82 | 101 | <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> |
85 | 104 | </dependency>
|
86 | 105 | <dependency>
|
87 | 106 | <groupId>org.scala-lang</groupId>
|
88 | 107 | <artifactId>scala-library</artifactId>
|
89 |
| - <version>2.10.4</version> |
| 108 | + <version>2.11.8</version> |
90 | 109 | </dependency>
|
91 | 110 | <dependency>
|
92 | 111 | <groupId>org.hibernate</groupId>
|
|
171 | 190 | <enabled>false</enabled>
|
172 | 191 | </snapshots>
|
173 | 192 | </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> |
174 | 209 | </repositories>
|
175 | 210 | <build>
|
176 | 211 | <plugins>
|
177 | 212 | <plugin>
|
178 | 213 | <artifactId>maven-compiler-plugin</artifactId>
|
| 214 | + <version>3.7.0</version> |
179 | 215 | <configuration>
|
180 | 216 | <charset>${project.source.charset}</charset>
|
181 | 217 | <encoding>${project.source.encoding}</encoding>
|
|
205 | 241 | <plugin>
|
206 | 242 | <groupId>net.alchim31.maven</groupId>
|
207 | 243 | <artifactId>scala-maven-plugin</artifactId>
|
| 244 | + <version>3.3.1</version> |
208 | 245 | <executions>
|
209 | 246 | <execution>
|
210 | 247 | <id>scala-compile-first</id>
|
|
0 commit comments