Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leocornus/leocornus-java-sandbox
My playground to learn and explore Java programming language
https://github.com/leocornus/leocornus-java-sandbox
java javaee maven
Last synced: 5 days ago
JSON representation
My playground to learn and explore Java programming language
- Host: GitHub
- URL: https://github.com/leocornus/leocornus-java-sandbox
- Owner: leocornus
- License: gpl-2.0
- Created: 2017-10-06T14:43:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-14T17:41:17.000Z (over 1 year ago)
- Last Synced: 2024-03-26T01:46:02.365Z (8 months ago)
- Topics: java, javaee, maven
- Language: Java
- Homepage:
- Size: 284 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simple readme
## set git author
```bash
# set git author:
cd ~/rd/java-sandbox; git config user.name 'Sean Chen'
# set the author email
cd ~/rd/java-sandbox; git config user.email '[email protected]'
cd ~/rd/java-sandbox; git config --listcd ~/rd/java-sandbox; git log
```## chage user info in a git commit
```bash
cd ~/rd/java-sandbox; git commit --amend --reset-author
```## set up maven
We need set up maven to load correct Java.
```bash
# check PATH.
echo $PATH# set up maven executable.
# check maven version
mvn --version# Sat 28 May 2022 16:16:45 EDT
export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home; mvn --version# comple the javafx demo's source code.
export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home; cd ~/rd/java-sandbox/javafx/demo; mvn compile```