Accounts

Make sure that you're email addresses for codehaus, jira and confluence is the same for these accounts. Only then you can enter your Jira and Confluence accounts in your codehaus profile.

Wiki

Various information can be found in the wiki.

Forums

Note that forums require separate registration.

User forum

Link: http://forums.activiti.org/en/viewforum.php?f=3

Use this forum for all your usage questions and for feature suggestions.

To increase your chance of getting an effective answer, we advise you to read How To Ask Questions The Smart Way.

When reporting a problem, always include the versions of Activiti, JDK and any other relevant component. And paste your configuration. And try to build a minimal example that shows the problem. All that increases your chances of getting a good answer.

Developer forum

Link: http://forums.activiti.org/en/viewforum.php?f=4

Only for topics related to development of Activiti itself.

Mailing lists

scm@activiti.codehaus.org

SVN commit notifications.

announce@activiti.codehaus.org

Notifications of releases and other important project events.

Jira issue tracker

Bug reports, feature request and release planning is done in JIRA

IRC

Open your IRC client (if you have one installed) or use this web based client

Public SVN

Our SVN repo has moved to codehaus!

URL: http://svn.codehaus.org/activiti

Public anonymous access to the Activiti codebase. No username or password necessary.

Developer SVN

URL: https://svn.codehaus.org/activiti

Password protected access to the Activiti codebase for contributors. If you want to become a contributor, check out the FAQ: How can I become a contributor to Activiti?

Fisheye

Browse SVN codebase changes

Maven repository

The download contains all the libraries that you need to work with Activiti. But for developers that prefer to use our maven repository, that is possible too.

URL: http://maven.alfresco.com/nexus/content/repositories/activiti

Group ID: org.activiti

Typically you want to have a dependency on the activiti-engine, junit and your DB driver artifact IDs like this:

<dependency>
  <groupId>org.activiti</groupId>
  <artifactId>activiti-engine</artifactId>
</dependency>
<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
</dependency>
<dependency>
  <groupId>hsqldb</groupId>
  <artifactId>hsqldb</artifactId>
  <version>1.8.0.7</version>
  <scope>test</scope>
</dependency>
      

And if you use Activiti with the Spring integration, then your dependencies could look like this:

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-context</artifactId>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-jdbc</artifactId>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-tx</artifactId>
</dependency>
<dependency>
  <groupId>cglib</groupId>
  <artifactId>cglib</artifactId>
</dependency>