Activiti5.x maven配置

 

http://www.activiti.org/community.html#maven.repository

 

Maven repository

The download contains all the libraries that you need to work with Activiti. But for developers that prefer to use Maven, add the following reposiory

<repositories>
  ...
  <repository>
    <id>Alfresco Maven Repository</id>
    <url>https://maven.alfresco.com/nexus/content/groups/public/</url>
  </repository>
  ...
</repositories>
      

To include the activiti engine in your project, add following dependency (note that you need to change the version to the latest release):

<dependency>
  <groupId>org.activiti</groupId>
  <artifactId>activiti-engine</artifactId>
  <version>5.x</version>
</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>
  <version>spring.version</version>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-jdbc</artifactId>
  <version>spring.version</version>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-tx</artifactId>
  <version>spring.version</version>
</dependency>

你可能感兴趣的:(maven,Activiti5.x)