# Introduction #
AcrIS is Maven-based project but that doesn't mean it is impossible to use Ant or other build tools... but following examples will use [Maven](http://maven.apache.org)
# Where is it available #
Stable releases are available in **Maven Central Repository**.
## AcrIS ##
```
sk.seges.acris
acris-os-gwt-parent
${acris-os.version}
```
## Sesam ##
```
sk.seges.sesam
sesam-os-base-parent
${sesam-os.version}
```
## CorpIS ##
```
sk.seges.corpis
a-corpis-project
${corpis-os.version}
```
# Profiles #
We try to simplify the process of creating new projects so we started to heavily use Maven Profiles. When you use a profile most of the relevant configuration is already present in the profile and you don't have to maintain it on your own.
Pick a specific type of how to configure AcrIS project from the following list (or menu on the left):
* [Google Web Toolkit profiles](ProfilesWebToolkit.md)
* [Google AppEngine profiles](ProfilesAppEngine.md)
* [SeSAM Annotation Processing profiles](ProfilesAnnotationProcessing.md)
* [Customized quick-start](QuickStartCustomized.md)
Profiles are activated by placing `-P` argument to `mvn` command but to simplify the process again, you usually need to **place profile's dot-file** only to the root directory.
Chapters about profiles provide more detailed information.
## How-to use profiles ##
There are only 3 steps:
Create project with POM file inheriting from:
```
sk.seges.acris
acris-os-gwt-parent
${acris-os.version}
```
Define which version of AcrIS you would like to use, e.g:
```
1.2.0
```
Place desired dot-file (empty file with specific name - e.g. `.gwt` ) to the same directory where POM file is.
That's it!