Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tap_schema_manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marco Molinaro
tap_schema_manager
Commits
230ab9d9
Commit
230ab9d9
authored
4 years ago
by
Sonia Zorba
Browse files
Options
Downloads
Patches
Plain Diff
Added Maven profile for supporting Java 9+
parent
2c6d3d2c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#1082
failed
4 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+0
-13
0 additions, 13 deletions
README.md
TASMAN-core/pom.xml
+19
-0
19 additions, 0 deletions
TASMAN-core/pom.xml
with
19 additions
and
13 deletions
README.md
+
0
−
13
View file @
230ab9d9
...
...
@@ -22,19 +22,6 @@ See also the [CHANGELOG](CHANGELOG.md).
*
**embedded**
: build embedded package (to be run _locally!_)
*
**installer**
: build install script (produce self-extracting install.sh script)
### WARNING: Java 8 is required
Currently TASMAN needs Java 8, higher versions are not working.
If your default Java installation is a higher version you have to set the
`JAVA_HOME`
variable while running the build.sh script.
JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64 ./build.sh installer
In the same way you have to explicitly configure the Java binary to use in the
`/opt/tasman/tasman`
file:
#!/bin/bash
/usr/lib/jvm/java-8-openjdk-amd64/bin/java -jar /opt/tasman/tasman-embedded.jar $1
## Supported application servers
The web app has been tested with:
...
...
This diff is collapsed.
Click to expand it.
TASMAN-core/pom.xml
+
19
−
0
View file @
230ab9d9
...
...
@@ -37,6 +37,25 @@
</dependencies>
<profiles>
<profile>
<id>
jdk9+
</id>
<activation>
<jdk>
[9,
</jdk>
</activation>
<dependencies>
<dependency>
<groupId>
org.glassfish.jaxb
</groupId>
<artifactId>
jaxb-core
</artifactId>
<version>
2.3.0
</version>
</dependency>
<dependency>
<groupId>
org.glassfish.jaxb
</groupId>
<artifactId>
jaxb-runtime
</artifactId>
<version>
2.3.3
</version>
<scope>
runtime
</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>
test
</id>
<properties>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment