浏览代码

[feature]bpm-core增加0.0.2版本

JieZ 3 年之前
父节点
当前提交
b90581f90c
共有 3 个文件被更改,包括 223 次插入0 次删除
  1. 二进制
      com/jingtong/.DS_Store
  2. 3 0
      com/jingtong/base-bpm/0.0.2/_remote.repositories
  3. 220 0
      com/jingtong/base-bpm/0.0.2/base-bpm-0.0.2.pom

二进制
com/jingtong/.DS_Store


+ 3 - 0
com/jingtong/base-bpm/0.0.2/_remote.repositories

@@ -0,0 +1,3 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Mon Sep 13 09:15:14 CST 2021
3
+base-bpm-0.0.2.pom>=

+ 220 - 0
com/jingtong/base-bpm/0.0.2/base-bpm-0.0.2.pom

@@ -0,0 +1,220 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!--
3
+  ~ The Hefei JingTong RDC(Research and Development Centre) Group.
4
+  ~ __________________
5
+  ~
6
+  ~    Copyright 2015-2021
7
+  ~    All Rights Reserved.
8
+  ~
9
+  ~    NOTICE:  All information contained herein is, and remains
10
+  ~    the property of JingTong Company and its suppliers,
11
+  ~    if any.
12
+  -->
13
+
14
+<project xmlns="http://maven.apache.org/POM/4.0.0"
15
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17
+    <groupId>com.jingtong</groupId>
18
+    <modelVersion>4.0.0</modelVersion>
19
+    <artifactId>base-bpm</artifactId>
20
+    <packaging>pom</packaging>
21
+    <version>0.0.2</version>
22
+    <modules>
23
+        <module>bpm-client-base</module>
24
+        <module>bpm-client</module>
25
+        <module>bpm-client-http</module>
26
+        <module>bpm-core</module>
27
+        <module>devtools</module>
28
+    </modules>
29
+    <properties>
30
+        <jixiang.version>0.0.1</jixiang.version>
31
+        <java.version>1.8</java.version>
32
+        <maven.compiler.source>1.8</maven.compiler.source>
33
+        <maven.compiler.target>1.8</maven.compiler.target>
34
+
35
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36
+        <encoding>UTF-8</encoding>
37
+
38
+        <spring-boot.version>2.3.8.RELEASE</spring-boot.version>
39
+
40
+        <mybatis-plus.version>3.4.1</mybatis-plus.version>
41
+        <aviator.version>5.2.1</aviator.version>
42
+
43
+        <guava.version>29.0-jre</guava.version>
44
+        <hutool.version>5.5.4</hutool.version>
45
+        <commons-io.version>2.5</commons-io.version>
46
+
47
+        <lombok.version>1.18.16</lombok.version>
48
+        <slf4j.version>1.7.30</slf4j.version>
49
+        <logback.version>1.2.3</logback.version>
50
+        <jackson-bom.version>2.11.3</jackson-bom.version>
51
+        <seata.version>1.4.1</seata.version>
52
+        <knife4j.version>2.0.1</knife4j.version>
53
+
54
+        <mysql.version>5.1.48</mysql.version>
55
+
56
+        <bpm.version>0.0.1</bpm.version>
57
+    </properties>
58
+    <dependencyManagement>
59
+        <dependencies>
60
+            <!-- spring boot 依赖 -->
61
+            <dependency>
62
+                <groupId>org.springframework.boot</groupId>
63
+                <artifactId>spring-boot-dependencies</artifactId>
64
+                <version>${spring-boot.version}</version>
65
+                <type>pom</type>
66
+                <scope>import</scope>
67
+            </dependency>
68
+
69
+            <dependency>
70
+                <groupId>commons-io</groupId>
71
+                <artifactId>commons-io</artifactId>
72
+                <version>${commons-io.version}</version>
73
+            </dependency>
74
+            <dependency>
75
+                <groupId>org.slf4j</groupId>
76
+                <artifactId>slf4j-api</artifactId>
77
+                <version>${slf4j.version}</version>
78
+            </dependency>
79
+            <dependency>
80
+                <groupId>org.slf4j</groupId>
81
+                <artifactId>log4j-over-slf4j</artifactId>
82
+                <version>${slf4j.version}</version>
83
+            </dependency>
84
+            <dependency>
85
+                <groupId>ch.qos.logback</groupId>
86
+                <artifactId>logback-core</artifactId>
87
+                <version>${logback.version}</version>
88
+            </dependency>
89
+            <dependency>
90
+                <groupId>ch.qos.logback</groupId>
91
+                <artifactId>logback-classic</artifactId>
92
+                <version>${logback.version}</version>
93
+            </dependency>
94
+
95
+            <dependency>
96
+                <groupId>cn.hutool</groupId>
97
+                <artifactId>hutool-core</artifactId>
98
+                <version>${hutool.version}</version>
99
+            </dependency>
100
+            <dependency>
101
+                <groupId>cn.hutool</groupId>
102
+                <artifactId>hutool-crypto</artifactId>
103
+                <version>${hutool.version}</version>
104
+            </dependency>
105
+
106
+            <dependency>
107
+                <groupId>com.google.guava</groupId>
108
+                <artifactId>guava</artifactId>
109
+                <version>${guava.version}</version>
110
+            </dependency>
111
+
112
+            <dependency>
113
+                <groupId>com.googlecode.aviator</groupId>
114
+                <artifactId>aviator</artifactId>
115
+                <version>${aviator.version}</version>
116
+                <exclusions>
117
+                    <exclusion>
118
+                        <groupId>commons-logging</groupId>
119
+                        <artifactId>commons-logging</artifactId>
120
+                    </exclusion>
121
+                    <exclusion>
122
+                        <groupId>commons-collections</groupId>
123
+                        <artifactId>commons-collections</artifactId>
124
+                    </exclusion>
125
+                </exclusions>
126
+            </dependency>
127
+
128
+            <!-- Mybatis Plus 插件 -->
129
+            <dependency>
130
+                <groupId>com.baomidou</groupId>
131
+                <artifactId>mybatis-plus</artifactId>
132
+                <version>${mybatis-plus.version}</version>
133
+            </dependency>
134
+            <dependency>
135
+                <groupId>com.baomidou</groupId>
136
+                <artifactId>mybatis-plus-core</artifactId>
137
+                <version>${mybatis-plus.version}</version>
138
+            </dependency>
139
+            <dependency>
140
+                <groupId>com.baomidou</groupId>
141
+                <artifactId>mybatis-plus-extension</artifactId>
142
+                <version>${mybatis-plus.version}</version>
143
+            </dependency>
144
+            <dependency>
145
+                <groupId>com.baomidou</groupId>
146
+                <artifactId>mybatis-plus-boot-starter</artifactId>
147
+                <version>${mybatis-plus.version}</version>
148
+            </dependency>
149
+            <dependency>
150
+                <groupId>com.baomidou</groupId>
151
+                <artifactId>mybatis-plus-generator</artifactId>
152
+                <version>${mybatis-plus.version}</version>
153
+            </dependency>
154
+            <dependency>
155
+                <groupId>p6spy</groupId>
156
+                <artifactId>p6spy</artifactId>
157
+                <version>3.9.0</version>
158
+            </dependency>
159
+            <!--mysql驱动-->
160
+            <dependency>
161
+                <groupId>mysql</groupId>
162
+                <artifactId>mysql-connector-java</artifactId>
163
+                <version>${mysql.version}</version>
164
+            </dependency>
165
+        </dependencies>
166
+    </dependencyManagement>
167
+    <dependencies>
168
+
169
+        <dependency>
170
+            <groupId>org.springframework.boot</groupId>
171
+            <artifactId>spring-boot-starter-test</artifactId>
172
+            <scope>test</scope>
173
+        </dependency>
174
+
175
+        <dependency>
176
+            <groupId>org.springframework.boot</groupId>
177
+            <artifactId>spring-boot-configuration-processor</artifactId>
178
+            <optional>true</optional>
179
+        </dependency>
180
+        <dependency>
181
+            <groupId>org.projectlombok</groupId>
182
+            <artifactId>lombok</artifactId>
183
+            <version>${lombok.version}</version>
184
+            <optional>true</optional>
185
+        </dependency>
186
+    </dependencies>
187
+    <repositories>
188
+        <repository>
189
+            <id>jing-tong</id>
190
+            <name>JingTong Maveen Repository</name>
191
+            <url>http://code.jing-tong.com:3000/jie.zhang/maven2/raw/master/</url>
192
+        </repository>
193
+    </repositories>
194
+    <build>
195
+        <plugins>
196
+            <plugin>
197
+                <groupId>org.apache.maven.plugins</groupId>
198
+                <artifactId>maven-source-plugin</artifactId>
199
+                <version>2.4</version>
200
+                <executions>
201
+                    <execution>
202
+                        <id>attach-sources</id>
203
+                        <phase>verify</phase><!--  要绑定到的生命周期的阶段 在verify之后,install之前执行下面指定的goal -->
204
+                        <goals>
205
+                            <goal>jar-no-fork</goal><!-- 类似执行mvn source:jar -->
206
+                        </goals>
207
+                    </execution>
208
+                </executions>
209
+            </plugin>
210
+        </plugins>
211
+        <extensions>
212
+            <extension>
213
+                <groupId>kr.motd.maven</groupId>
214
+                <artifactId>os-maven-plugin
215
+                </artifactId><!--引入操作系统os设置的属性插件,否则${os.detected.classifier} 操作系统版本会找不到 -->
216
+                <version>1.5.0.Final</version>
217
+            </extension>
218
+        </extensions>
219
+    </build>
220
+</project>