yantian yue
2023-10-18 465d5c4666546e7e54f0e3c34c7bcce5830aaa6a
提交 | 用户 | 时间
1ac2bc 1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>cn.stylefeng</groupId>
9         <artifactId>guns-base-support</artifactId>
10         <version>1.0.0</version>
11         <relativePath>../pom.xml</relativePath>
12     </parent>
13
14     <artifactId>guns-workflow</artifactId>
15
16     <packaging>jar</packaging>
17
18     <dependencies>
19
20         <!--基础组件-->
21         <dependency>
22             <groupId>cn.stylefeng</groupId>
23             <artifactId>guns-sys</artifactId>
24             <version>1.0.0</version>
25         </dependency>
26
27         <!-- activiti -->
28         <dependency>
29             <groupId>org.activiti</groupId>
30             <artifactId>activiti-spring-boot-starter-basic</artifactId>
31             <version>${activiti.version}</version>
32             <exclusions>
33                 <exclusion>
34                     <groupId>de.odysseus.juel</groupId>
35                     <artifactId>juel-spi</artifactId>
36                 </exclusion>
37                 <exclusion>
38                     <groupId>de.odysseus.juel</groupId>
39                     <artifactId>juel-api</artifactId>
40                 </exclusion>
41                 <exclusion>
42                     <artifactId>mybatis</artifactId>
43                     <groupId>org.mybatis</groupId>
44                 </exclusion>
45                 <exclusion>
46                     <artifactId>activation</artifactId>
47                     <groupId>javax.activation</groupId>
48                 </exclusion>
49             </exclusions>
50         </dependency>
51         <dependency>
52             <groupId>org.activiti</groupId>
53             <artifactId>activiti-json-converter</artifactId>
54             <version>${activiti.version}</version>
55         </dependency>
56
57         <!-- batik start -->
58         <dependency>
59             <groupId>org.apache.xmlgraphics</groupId>
60             <artifactId>batik-anim</artifactId>
61             <version>${batik.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.apache.xmlgraphics</groupId>
65             <artifactId>batik-awt-util</artifactId>
66             <version>${batik.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.apache.xmlgraphics</groupId>
70             <artifactId>batik-bridge</artifactId>
71             <version>${batik.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>org.apache.xmlgraphics</groupId>
75             <artifactId>batik-codec</artifactId>
76             <version>${batik.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.apache.xmlgraphics</groupId>
80             <artifactId>batik-css</artifactId>
81             <version>${batik.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.xmlgraphics</groupId>
85             <artifactId>batik-dom</artifactId>
86             <version>${batik.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.apache.xmlgraphics</groupId>
90             <artifactId>batik-ext</artifactId>
91             <version>${batik.version}</version>
92         </dependency>
93         <dependency>
94             <groupId>org.apache.xmlgraphics</groupId>
95             <artifactId>batik-gvt</artifactId>
96             <version>${batik.version}</version>
97         </dependency>
98         <dependency>
99             <groupId>org.apache.xmlgraphics</groupId>
100             <artifactId>batik-js</artifactId>
101             <version>${batik.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>org.apache.xmlgraphics</groupId>
105             <artifactId>batik-parser</artifactId>
106             <version>${batik.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>org.apache.xmlgraphics</groupId>
110             <artifactId>batik-script</artifactId>
111             <version>${batik.version}</version>
112         </dependency>
113         <dependency>
114             <groupId>org.apache.xmlgraphics</groupId>
115             <artifactId>batik-svg-dom</artifactId>
116             <version>${batik.version}</version>
117         </dependency>
118         <dependency>
119             <groupId>org.apache.xmlgraphics</groupId>
120             <artifactId>batik-svggen</artifactId>
121             <version>${batik.version}</version>
122         </dependency>
123         <dependency>
124             <groupId>org.apache.xmlgraphics</groupId>
125             <artifactId>batik-transcoder</artifactId>
126             <version>${batik.version}</version>
127             <exclusions>
128                 <exclusion>
129                     <artifactId>commons-io</artifactId>
130                     <groupId>commons-io</groupId>
131                 </exclusion>
132             </exclusions>
133         </dependency>
134         <dependency>
135             <groupId>org.apache.xmlgraphics</groupId>
136             <artifactId>batik-util</artifactId>
137             <version>${batik.version}</version>
138         </dependency>
139         <dependency>
140             <groupId>org.apache.xmlgraphics</groupId>
141             <artifactId>batik-xml</artifactId>
142             <version>${batik.version}</version>
143         </dependency>
144
145         <!-- jstl -->
146         <dependency>
147             <groupId>javax.servlet</groupId>
148             <artifactId>jstl</artifactId>
149         </dependency>
150
151         <!-- jasper -->
152         <dependency>
153             <groupId>org.apache.tomcat.embed</groupId>
154             <artifactId>tomcat-embed-jasper</artifactId>
155             <scope>provided</scope>
156         </dependency>
157
158         <!-- BASE64处理 -->
159         <dependency>
160             <groupId>commons-codec</groupId>
161             <artifactId>commons-codec</artifactId>
162         </dependency>
163
164         <!-- 上传文件依赖 -->
165         <dependency>
166             <groupId>commons-fileupload</groupId>
167             <artifactId>commons-fileupload</artifactId>
168         </dependency>
169
170     </dependencies>
171
172     <build>
173         <finalName>${project.artifactId}</finalName>
174     </build>
175
176 </project>