|
@@ -41,9 +41,20 @@
|
|
<scope>compile</scope>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependency>
|
|
<dependency>
|
|
<dependency>
|
|
- <groupId>com.xt.js.gkaq.common</groupId>
|
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
+ <artifactId>activiti-engine</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
+ <artifactId>activiti-spring</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.yuanxd.tools</groupId>
|
|
|
|
+ <artifactId>x-tools-io</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.xt.js.gkaq</groupId>
|
|
<artifactId>gkaq-common</artifactId>
|
|
<artifactId>gkaq-common</artifactId>
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencies>
|
|
<dependencyManagement>
|
|
<dependencyManagement>
|
|
@@ -94,6 +105,16 @@
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
</plugin>
|
|
</plugin>
|
|
<!-- compiler插件, 设定JDK版本 -->
|
|
<!-- compiler插件, 设定JDK版本 -->
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <version>3.0</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <source>${jdk.version}</source>
|
|
|
|
+ <target>${jdk.version}</target>
|
|
|
|
+ <showWarnings>true</showWarnings>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
@@ -119,5 +140,7 @@
|
|
</build>
|
|
</build>
|
|
<properties>
|
|
<properties>
|
|
<project.build.sourceEncoding>GBK</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>GBK</project.build.sourceEncoding>
|
|
|
|
+ <!-- java 版本 -->
|
|
|
|
+ <jdk.version>1.7</jdk.version>
|
|
</properties>
|
|
</properties>
|
|
</project>
|
|
</project>
|