Add default arguments

This commit is contained in:
Alexander Söderberg 2020-09-08 19:30:45 +02:00
parent 11d40bdd87
commit e623d72be7
No known key found for this signature in database
GPG key ID: C0207FF7EA146678
42 changed files with 205 additions and 35 deletions

24
cloud-jline/pom.xml Normal file
View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>Commands</artifactId>
<groupId>com.intellectualsites</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-jline</artifactId>
<dependencies>
<dependency>
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
<version>3.16.0</version>
</dependency>
<dependency>
<groupId>com.intellectualsites</groupId>
<artifactId>cloud</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>