From f6895e13c29daf3f2ef1ffb3686683e4172c9b91 Mon Sep 17 00:00:00 2001 From: Daniel Szmulewicz Date: Sun, 7 Apr 2024 11:04:14 +1200 Subject: [PATCH] bump deps --- docs/index.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.org b/docs/index.org index 9eefaec..4bdb028 100644 --- a/docs/index.org +++ b/docs/index.org @@ -45,7 +45,7 @@ Meyvn enables you to generate uberjars (executables) and jars (libraries), and t Copy and paste the following command in your terminal: #+begin_src sh -clj -Sdeps '{:deps {org.meyvn/meyvn-installer {:mvn/version "1.4.8"}}}' -M -m meyvn-installer.core +clj -Sdeps '{:deps {org.meyvn/meyvn-installer {:mvn/version "1.4.9"}}}' -M -m meyvn-installer.core #+end_src ** Manual installation @@ -53,7 +53,7 @@ clj -Sdeps '{:deps {org.meyvn/meyvn-installer {:mvn/version "1.4.8"}}}' -M -m me - Download Meyvn to your local repository #+begin_src shell -mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:get -DremoteRepositories=https://nexus.tuppu.net/repository/meyvn/ -Dartifact=org.meyvn:meyvn:1.7.1 +mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:get -DremoteRepositories=https://nexus.tuppu.net/repository/meyvn/ -Dartifact=org.meyvn:meyvn:1.7.2 #+end_src - Create a new shell script in your path. @@ -67,7 +67,7 @@ $ touch /usr/local/bin/myvn #+BEGIN_SRC sh $ cat /usr/local/bin/myvn #!/bin/sh -M2_HOME=/path/to/maven/root java -jar ~/.m2/repository/org/meyvn/meyvn/1.7.1/meyvn-1.7.1.jar "$@" +M2_HOME=/path/to/maven/root java -jar ~/.m2/repository/org/meyvn/meyvn/1.7.2/meyvn-1.7.2.jar "$@" #+END_SRC ~M2_HOME~ points to the root of your Maven installation directory, replace the content with the prefix appropriate for your system.