Error retrieving Portal Page: Profile not found.が出たときの対処法

Aipoをビルドした際に Error retrieving Portal Page: Profile not found. といったエラーメッセージが出ている場合、 Postgresqlのバージョン指定が正しくない、もしくは指定されていないことが考えられます。


対処法としてはルートディレクトリ直下の.classpathに

<classpathentry kind="var" path="M2_REPO/org/postgresql/postgresql/9.3-1101-jdbc3/postgresql-9.3-1101-jdbc3.jar"/>

と追記し、またルートディレクトリ直下のpom.xmlのdependencies内に

<dependency>
  <groupId>org.postgresql</groupId>
  <artifactId>postgresql</artifactId>
  <version>9.3-1101-jdbc3</version>
</dependency>

と追記することで対処できます。(上記の例はpostgresql9.3に対応した場合の例となります。)