(to be tested on https://regex101.com/)
([^"]*)
(to be tested on https://regex101.com/)
([^"]*)
/** | |
* The <code>InputHandler</code> is implementing the <code>KeyListener</code> to | |
* be the keyboard manager. It is mapping some <code>keyEvent</code> code to | |
* possible <code>ACTIONS</code>. | |
* <ul> | |
* <li>the <code>keyMapping</code> are the map containing the mapping between | |
* some KeyCode to <code>ACTIONS</code> values,</li> | |
* <li>the internal <code>keys</code> map contains all keys status as boolean | |
* values,</li> | |
* <li>the <code>actions</code> contains all Action events produced.</li> |
#!/bin/bash | |
if [ $1 -eq ""]; then | |
#---- Display help message --------------------------------------- | |
echo -e "Command line: $0 | |
Usage: | |
------- | |
$0 -n [project_name] -p [project_version] -a [author_name] -e [author_email] -j [java_version] -k [app_package_name] | |
where: | |
- p [project_name] name of the project directory to be generated (will be used capitalized as application name and main class), | |
- v [project_version] the version for the project to be initialized |
(from https://www.ricalo.com/blog/install-powerline-ubuntu/#install-powerline)
sudo apt install powerline
activate is by pasting in the ~/.bashrc
:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>core</groupId> | |
<artifactId>usecasetdd</artifactId> | |
<version>0.0.2-SNAPSHOT</version> | |
<name>UseCaseTDD</name> | |
<description>A demonstration project on how to create sustainable project.</description> | |
<inceptionYear>2022</inceptionYear> | |
<properties> |