diff options
author | Eduardo Julian | 2021-11-30 23:48:11 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-11-30 23:48:11 -0400 |
commit | 4334564a5e08956fbe382cdcc69c564f74c35d05 (patch) | |
tree | d130775a09e632fe1d3903ada15463728b026a7b /lux-jvm-function | |
parent | 872c097327c0a5b3baa69e88dacd09718ddfa793 (diff) |
v0.6.5
Diffstat (limited to 'lux-jvm-function')
-rw-r--r-- | lux-jvm-function/commands.md | 4 | ||||
-rw-r--r-- | lux-jvm-function/dependency.pom | 33 |
2 files changed, 3 insertions, 34 deletions
diff --git a/lux-jvm-function/commands.md b/lux-jvm-function/commands.md index a82070bc6..6babdb485 100644 --- a/lux-jvm-function/commands.md +++ b/lux-jvm-function/commands.md @@ -2,10 +2,10 @@ ``` cd ~/lux/lux-jvm-function/ \ -&& mvn install:install-file -Dfile=dependency.jar -DgroupId=com.github.luxlang -DartifactId=lux-jvm-function -Dversion=0.6.5-SNAPSHOT -Dpackaging=jar +&& mvn install:install-file -Dfile=dependency.jar -DgroupId=com.github.luxlang -DartifactId=lux-jvm-function -Dversion=0.6.5 -Dpackaging=jar cd ~/lux/lux-jvm/ && mvn deploy:deploy-file \ --Durl=https://<username>:<password>@oss.sonatype.org/content/repositories/snapshots/ \ +-Durl=https://USERNAME:PASSWORD@oss.sonatype.org/content/repositories/snapshots/ \ -Dfile=target/program.jar \ -DgroupId=com.github.luxlang \ -DartifactId=lux-jvm \ diff --git a/lux-jvm-function/dependency.pom b/lux-jvm-function/dependency.pom index 1c826547f..a4c977946 100644 --- a/lux-jvm-function/dependency.pom +++ b/lux-jvm-function/dependency.pom @@ -4,7 +4,7 @@ <groupId>com.github.luxlang</groupId> <artifactId>lux-jvm-function</artifactId> <packaging>jar</packaging> - <version>0.6.5-SNAPSHOT</version> + <version>0.6.5</version> <name>lux-jvm-function</name> <description>Function abstract class for the JVM compiler.</description> <url>https://github.com/LuxLang/lux</url> @@ -17,23 +17,6 @@ <scm> <url>https://github.com/LuxLang/lux.git</url> </scm> - <build> - <sourceDirectory>source</sourceDirectory> - <testSourceDirectory>test</testSourceDirectory> - <resources> - <resource> - <directory>resources</directory> - </resource> - </resources> - <testResources> - <testResource> - <directory>resources</directory> - </testResource> - </testResources> - <directory>target</directory> - <outputDirectory>target/classes</outputDirectory> - <plugins/> - </build> <repositories> <repository> <id>central</id> @@ -46,16 +29,6 @@ </releases> </repository> <repository> - <id>clojars</id> - <url>https://repo.clojars.org/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - <repository> <id>snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> @@ -79,7 +52,3 @@ </developers> </project> -<!-- This file was autogenerated by Leiningen. - Please do not edit it directly; instead edit project.clj and regenerate it. - It should not be considered canonical data. For more information see - https://github.com/technomancy/leiningen --> |