Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions jena-elephas/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,28 @@ limitations under the License.
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<!-- skip does not seem to skip -->
<executions>
<execution>
<id>enforce</id>
<phase/>
</execution>
</executions>
<configuration>
<!-- The Hadoop dependency has inconsistent dependencies -->
<!-- Really want to just turn off <dependencyConvergence/> -->
<skip>true</skip>
<fail>false</fail>
</configuration>
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<!-- Hadoop Dependencies -->
Expand Down
10 changes: 10 additions & 0 deletions jena-text-es/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<exclusions>
<!-- Take "jackson" that comes via jsonld-java
At Jena 3.7.0 that is jsonld-java v0.11.1 depends on jackson 2.9.0
whereas elasticsearch depends on jackson 2.8.6
-->
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>18</version>
<version>19</version>
</parent>

<licenses>
Expand Down Expand Up @@ -252,7 +252,9 @@
<module>jena-fuseki1</module>
<module>jena-csv</module>
<module>jena-sdb</module>
<module>jena-maven-tools</module>
<!-- apache-19 breaks this
<module>jena-maven-tools</module>
-->

<!-- Other -->
<module>jena-permissions</module>
Expand Down Expand Up @@ -581,6 +583,7 @@
</goals>
<configuration combine.self="override">
<rules>
<dependencyConvergence/>
<requireJavaVersion>
<version>1.8.0</version>
</requireJavaVersion>
Expand Down