Skip to content
This repository was archived by the owner on Jul 6, 2023. It is now read-only.

Commit f5742cf

Browse files
committed
added java adapter for oracle java8, improved description text
1 parent abd2396 commit f5742cf

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ GRADLE = ./gradlew -PbuildVersion=$(buildversion)
3030
jarfile := cypher-shell.jar
3131
rpmfile := cypher-shell-$(rpmversion).noarch.rpm
3232
debfile := cypher-shell_$(debversion)_all.deb
33-
java_adapter_files := neo4j-java-adapter-jre-11-$(java_adapter_version).noarch.rpm \
34-
neo4j-java-adapter-jre-11-headless-$(java_adapter_version).noarch.rpm
33+
java_adapter_files := neo4j-java-adapter-jre-11-$(java_adapter_version).noarch.rpm \
34+
neo4j-java-adapter-jre-11-headless-$(java_adapter_version).noarch.rpm \
35+
neo4j-java-adapter-jre-8-headless-$(java_adapter_version).noarch.rpm
3536

3637
outputs := cypher-shell cypher-shell.bat $(jarfile)
3738
artifacts:=$(patsubst %,cypher-shell/build/install/cypher-shell/%,${outputs})

packaging/rpm-java-adapter/neo4j-java-adapter-jre-11-headless.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Name: neo4j-java-adapter-jre-11-headless
22
Version: 1.0.0
33
Release: 1%{?dist}
4-
Summary: Meta package so that Neo4j can be compatible with java 8 and java 11 in both openjdk and oracle
4+
Summary: Meta package so that Neo4j can be compatible with java 11 headless in both openjdk and oracle
55
License: GPLv3
66

77
Provides: jre-headless = 11

packaging/rpm-java-adapter/neo4j-java-adapter-jre-11.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Release: 1%{?dist}
44
Summary: Meta package so that Neo4j can be compatible with java 8 and java 11 in both openjdk and oracle
55
License: GPLv3
66

7-
Provides: jre = 11, java = 11, jre-headless = 11
7+
Provides: jre = 11, jre-headless = 11
88
Requires: jre-11
99
BuildArch: noarch
1010

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Name: neo4j-java-adapter-jre-8-headless
2+
Version: 1.0.0
3+
Release: 1%{?dist}
4+
Summary: Meta package so that Neo4j can be compatible with java 8 from oracle
5+
License: GPLv3
6+
7+
Provides: jre-headless = 1:1.8.0
8+
Requires: jre-1.8.0
9+
BuildArch: noarch
10+
11+
%description
12+
Meta package so that Neo4j can be compatible with java 8 from Oracle.
13+
This does NOT include the Oracle java package, or any other source code.
14+
15+
%prep
16+
%build
17+
%install
18+
%files

0 commit comments

Comments
 (0)