Skip to content

Instantly share code, notes, and snippets.

View antiqueeverett's full-sized avatar
:octocat:
sharing information is the best way to learn

Everett antiqueeverett

:octocat:
sharing information is the best way to learn
View GitHub Profile
$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master
@antiqueeverett
antiqueeverett / clojure_java_gradle.md
Last active June 13, 2020 06:53
How to gradle run a java project that invokes clojure
  • create a clojure project using leiningen $ lein new <project>

  • create a run.sh script and build.gradle file

  • create a lib directory and put the clojure-1.10.1.jar in the directory

<project>/
│
├── run.sh (create file)