Skip to content

Commit a763bff

Browse files
committed
Use metafacture-core-7.0.0-rc1 with memory leak fix (RPB-266)
Get tag in GitHub action, add local file to avoid release build (which requires signing), use resulting SNAPSHOT in build.sbt
1 parent e706032 commit a763bff

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ jobs:
1111
uses: actions/setup-java@v1
1212
with:
1313
java-version: 11
14-
- name: Install metafacture-fix 1.2.0
14+
- name: Install metafacture-core 7.0.0-rc1
1515
run: |
16-
git clone https://github.com/metafacture/metafacture-fix.git -b 1.2.0
17-
cd metafacture-fix
16+
git clone https://github.com/metafacture/metafacture-core.git -b metafacture-core-7.0.0-rc1
17+
cd metafacture-core
18+
touch .temp # don't build release, which requires signing
1819
./gradlew publishToMavenLocal
1920
cd ..
2021
- name: Run tests

build.sbt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ libraryDependencies ++= Seq(
1010
cache,
1111
javaWs,
1212
"com.typesafe.play" % "play-test_2.11" % "2.4.11",
13-
"org.metafacture" % "metafacture-elasticsearch" % "6.2.0",
14-
"org.metafacture" % "metafacture-io" % "6.2.0",
15-
"org.metafacture" % "metafacture-strings" % "6.2.0",
16-
"org.metafacture" % "metafacture-json" % "6.2.0",
17-
"org.metafacture" % "metafacture-flux" % "6.2.0",
18-
"org.metafacture" % "metafacture-triples" % "6.2.0",
19-
"org.metafacture" % "metafacture-formatting" % "6.2.0",
20-
"org.metafacture" % "metafacture-monitoring" % "6.2.0",
21-
"org.metafacture" % "metafacture-csv" % "6.2.0",
22-
"org.metafacture" % "metafacture-linkeddata" % "6.2.0",
23-
"org.metafacture" % "metafix" % "1.2.0",
13+
"org.metafacture" % "metafacture-elasticsearch" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
14+
"org.metafacture" % "metafacture-io" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
15+
"org.metafacture" % "metafacture-strings" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
16+
"org.metafacture" % "metafacture-json" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
17+
"org.metafacture" % "metafacture-flux" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
18+
"org.metafacture" % "metafacture-triples" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
19+
"org.metafacture" % "metafacture-formatting" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
20+
"org.metafacture" % "metafacture-monitoring" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
21+
"org.metafacture" % "metafacture-csv" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
22+
"org.metafacture" % "metafacture-linkeddata" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
23+
"org.metafacture" % "metafix" % "commit-b9eebb41b26bac5b1083b90112c0eefdc17ad25e-SNAPSHOT",
2424
"org.elasticsearch" % "elasticsearch" % "5.6.16" withSources(),
2525
"org.elasticsearch.plugin" % "transport-netty4-client" % "5.6.16" withSources(),
2626
"com.sun.xml.bind" % "jaxb-impl" % "2.3.3" withSources(),

0 commit comments

Comments
 (0)