aboutsummaryrefslogtreecommitdiff
path: root/licentia
diff options
context:
space:
mode:
authorEduardo Julian2021-06-26 00:56:43 -0400
committerEduardo Julian2021-06-26 00:56:43 -0400
commitb80f79ae6b2e240949ebd709a253e21f7caf7ed3 (patch)
tree0347461baa5544b0afa65fe260d7f804ff238c97 /licentia
parentce1a7a131f7c4df8eae5c019eba2893b56f04d46 (diff)
Delegate text (lower|upper)-casing to the host-platform implementations.
Diffstat (limited to 'licentia')
-rw-r--r--licentia/commands.md3
-rw-r--r--licentia/project.lux15
2 files changed, 18 insertions, 0 deletions
diff --git a/licentia/commands.md b/licentia/commands.md
index 6671f43be..58f3cf09b 100644
--- a/licentia/commands.md
+++ b/licentia/commands.md
@@ -9,6 +9,9 @@ cd ~/lux/licentia/ \
cd ~/lux/licentia/ \
&& lux clean \
&& time lux build
+
+cd ~/lux/licentia/ \
+&& time lux test
```
## Test
diff --git a/licentia/project.lux b/licentia/project.lux
new file mode 100644
index 000000000..5ef61dd16
--- /dev/null
+++ b/licentia/project.lux
@@ -0,0 +1,15 @@
+{#identity ["com.github.luxlang" "licentia" "0.6.0-SNAPSHOT"]
+ #description "A program for producing free/open-source/reciprocal licenses."
+
+ #deploy_repositories {"snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"
+ "releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}
+
+ #repositories ["https://oss.sonatype.org/content/repositories/snapshots/"
+ "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
+
+ #dependencies [["com.github.luxlang" "stdlib" "0.6.0-SNAPSHOT" "jar"]
+ ["com.github.luxlang" "lux-jvm" "0.6.0-SNAPSHOT" "jar"]]
+
+ #target "target"
+ #program "program/licentia"
+ #test "test/licentia"}