記憶庫

自分用のメモです。

TERASOLUNAのinitdb環境を構築する(書き掛け)

前提条件

手順

ソースフォルダの作成

chameleon-initdb プロジェクトのソースフォルダとして、以下の3フォルダを作成する。

/src/main/java
/src/main/resources
/src/test/java

Apache Commons Lang3のインストール

以下の依存定義を、chameleon/pom.xml 配下に追加する。

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.4</version>
</dependency>

以下の依存定義を、chameleon-initdb/pom.xml 配下に追加する。

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
</dependency>
Apache Velocityのインストール

以下の依存定義を、chameleon-initdb/pom.xml 配下に追加する。

<dependency>
    <groupId>org.apache.velocity</groupId>
    <artifactId>velocity</artifactId>
</dependency>