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.
Note that forums require separate registration.
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.
Link: http://forums.activiti.org/en/viewforum.php?f=4
Only for topics related to development of Activiti itself.
SVN commit notifications.
Notifications of releases and other important project events.
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.
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?
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>