Skip to content

Commit

Permalink
Merge #1895 from branch 'spiegelNotBreakingAnymore' of https://github…
Browse files Browse the repository at this point in the history
  • Loading branch information
dr0i committed May 16, 2024
2 parents 0a376ff + 3500db5 commit 51907ed
Show file tree
Hide file tree
Showing 5 changed files with 141,239 additions and 27 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on: push
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_OPTS: "-Xmx768M"
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
Expand Down
48 changes: 24 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<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">
<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>
<groupId>org.lobid</groupId>
<artifactId>lobid-resources</artifactId>
Expand Down Expand Up @@ -105,8 +105,8 @@
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.jsonld-java</groupId>
Expand Down Expand Up @@ -195,18 +195,18 @@
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<excludes>
<exclude>beacon/data/*.jsonl</exclude>
</excludes>
<excludes>
<exclude>beacon/data/*.jsonl</exclude>
</excludes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>${target.jdk}</source>
<target>${target.jdk}</target>
<showWarnings>true</showWarnings>
Expand All @@ -228,26 +228,26 @@
<configuration>
<test>*Test</test>
<environmentVariables>
<generateTestData>${generateTestData}</generateTestData>
<generateTestData>${generateTestData}</generateTestData>
</environmentVariables>
<test>UnitTests</test>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<cleanupDaemonThreads>false</cleanupDaemonThreads>
<argLine>-Xmx1024m</argLine>
<argLine>-Xmx1536m</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
Loading

0 comments on commit 51907ed

Please sign in to comment.