pom.xml 972 字节
Newer Older
1 2 3 4 5
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
6
    <groupId>org.activiti</groupId>
7
    <artifactId>activiti-core-common-dependencies</artifactId>
8
    <version>7.12.0-SNAPSHOT</version>
9
    <relativePath>../activiti-core-common-dependencies</relativePath>
10 11
  </parent>
  <artifactId>activiti-spring-application</artifactId>
12
  <name>Activiti :: Core :: Common :: Application</name>
13 14 15 16 17 18
  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
    </dependency>
    <dependency>
19 20
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
21 22 23 24
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>