forked from EBISPOT/ols4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from TIBHannover/11-several-ontologies-of-tib-…
…fail-in-ingestion 11 several ontologies of tib fail in ingestion
- Loading branch information
Showing
5 changed files
with
3,380 additions
and
843 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,117 +1,129 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>uk.ac.ebi.spot</groupId> | ||
<artifactId>rdf2json</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<groupId>uk.ac.ebi.spot</groupId> | ||
<artifactId>rdf2json</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.jena</groupId> | ||
<artifactId>apache-jena-libs</artifactId> | ||
<version>3.17.0</version> | ||
<type>pom</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.7</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>31.1-jre</version> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.jena</groupId> | ||
<artifactId>apache-jena-libs</artifactId> | ||
<version>3.17.0</version> | ||
<type>pom</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.7</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>31.1-jre</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.obolibrary.robot</groupId> | ||
<artifactId>robot-core</artifactId> | ||
<version>1.9.6</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
</properties> | ||
<properties> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<build> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<configuration> | ||
<shadedArtifactAttached>false</shadedArtifactAttached> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<configuration> | ||
<shadedArtifactAttached>false</shadedArtifactAttached> | ||
|
||
<!-- | ||
<!-- | ||
https://issues.apache.org/jira/browse/LOG4J2-954 | ||
Multiple Log4j2Plugins.dat | ||
jena-fuseki-server only pick up one Log4j2Plugins.dat (from log4j-core-2.13.2) | ||
No need to run the transformer to merge them. | ||
If it becomes necessary, see: https://github.com/edwgiz/maven-shaded-log4j-transformer | ||
If it becomes necessary, see: | ||
https://github.com/edwgiz/maven-shaded-log4j-transformer | ||
--> | ||
|
||
<transformers> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | ||
<mainClass>uk.ac.ebi.rdf2json.RDF2JSON</mainClass> | ||
<!-- https://issues.apache.org/jira/browse/LOG4J2-2537 --> | ||
<manifestEntries> | ||
<Multi-Release>true</Multi-Release> | ||
</manifestEntries> | ||
</transformer> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" /> | ||
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"> | ||
<addHeader>false</addHeader> | ||
</transformer> | ||
</transformers> | ||
<transformers> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> | ||
<mainClass>uk.ac.ebi.rdf2json.RDF2JSON</mainClass> | ||
<!-- | ||
https://issues.apache.org/jira/browse/LOG4J2-2537 --> | ||
<manifestEntries> | ||
<Multi-Release>true</Multi-Release> | ||
</manifestEntries> | ||
</transformer> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" /> | ||
<transformer | ||
implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer"> | ||
<addHeader>false</addHeader> | ||
</transformer> | ||
</transformers> | ||
|
||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<!-- Some jars are signed but shading breaks that. Don't | ||
<filters> | ||
<filter> | ||
<artifact>*:*</artifact> | ||
<excludes> | ||
<!-- Some jars are signed but shading breaks | ||
that. Don't | ||
include signing files. --> | ||
<exclude>META-INF/*.SF</exclude> | ||
<exclude>META-INF/*.DSA</exclude> | ||
<exclude>META-INF/*.RSA</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<!--<phase /><!- - Switch off --> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.apache.maven.plugins</groupId>--> | ||
<!-- <artifactId>maven-assembly-plugin</artifactId>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <phase>package</phase>--> | ||
<!-- <goals>--> | ||
<!-- <goal>single</goal>--> | ||
<!-- </goals>--> | ||
<!-- <configuration>--> | ||
<!-- <archive>--> | ||
<!-- <manifest>--> | ||
<!-- <mainClass>--> | ||
<!-- RDF2JSON--> | ||
<!-- </mainClass>--> | ||
<!-- </manifest>--> | ||
<!-- </archive>--> | ||
<!-- <descriptorRefs>--> | ||
<!-- <descriptorRef>jar-with-dependencies</descriptorRef>--> | ||
<!-- </descriptorRefs>--> | ||
<!-- </configuration>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- </plugin>--> | ||
</plugins> | ||
</build> | ||
<exclude>META-INF/*.SF</exclude> | ||
<exclude>META-INF/*.DSA</exclude> | ||
<exclude>META-INF/*.RSA</exclude> | ||
</excludes> | ||
</filter> | ||
</filters> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<!--<phase /><!- - Switch off --> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.apache.maven.plugins</groupId>--> | ||
<!-- <artifactId>maven-assembly-plugin</artifactId>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <phase>package</phase>--> | ||
<!-- <goals>--> | ||
<!-- <goal>single</goal>--> | ||
<!-- </goals>--> | ||
<!-- <configuration>--> | ||
<!-- <archive>--> | ||
<!-- <manifest>--> | ||
<!-- <mainClass>--> | ||
<!-- RDF2JSON--> | ||
<!-- </mainClass>--> | ||
<!-- </manifest>--> | ||
<!-- </archive>--> | ||
<!-- <descriptorRefs>--> | ||
<!-- <descriptorRef>jar-with-dependencies</descriptorRef>--> | ||
<!-- </descriptorRefs>--> | ||
<!-- </configuration>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- </plugin>--> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.