Kaynağa Gözat

[feature]增加查询全部审批单接口

JieZ 3 yıl önce
ebeveyn
işleme
c5488148a9

BIN
com/jingtong/.DS_Store


+ 1 - 1
com/jingtong/base-bpm/0.0.1/_remote.repositories

@@ -1,3 +1,3 @@
1 1
 #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
-#Wed Aug 11 15:13:11 CST 2021
2
+#Sat Sep 11 23:25:23 CST 2021
3 3
 base-bpm-0.0.1.pom>=

+ 16 - 0
com/jingtong/base-bpm/0.0.1/base-bpm-0.0.1.pom

@@ -190,6 +190,22 @@
190 190
         </repository>
191 191
     </repositories>
192 192
     <build>
193
+        <plugins>
194
+            <plugin>
195
+                <groupId>org.apache.maven.plugins</groupId>
196
+                <artifactId>maven-source-plugin</artifactId>
197
+                <version>2.4</version>
198
+                <executions>
199
+                    <execution>
200
+                        <id>attach-sources</id>
201
+                        <phase>verify</phase><!--  要绑定到的生命周期的阶段 在verify之后,install之前执行下面指定的goal -->
202
+                        <goals>
203
+                            <goal>jar-no-fork</goal><!-- 类似执行mvn source:jar -->
204
+                        </goals>
205
+                    </execution>
206
+                </executions>
207
+            </plugin>
208
+        </plugins>
193 209
         <extensions>
194 210
             <extension>
195 211
                 <groupId>kr.motd.maven</groupId>

+ 1 - 1
com/jingtong/base-bpm/0.0.2/_remote.repositories

@@ -1,3 +1,3 @@
1 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
2
+#Sat Oct 09 10:15:22 CST 2021
3 3
 base-bpm-0.0.2.pom>=

+ 37 - 26
com/jingtong/base-bpm/0.0.2/base-bpm-0.0.2.pom

@@ -54,6 +54,8 @@
54 54
         <mysql.version>5.1.48</mysql.version>
55 55
 
56 56
         <bpm.version>0.0.1</bpm.version>
57
+
58
+        <mapstruct.version>1.4.2.Final</mapstruct.version>
57 59
     </properties>
58 60
     <dependencyManagement>
59 61
         <dependencies>
@@ -162,6 +164,11 @@
162 164
                 <artifactId>mysql-connector-java</artifactId>
163 165
                 <version>${mysql.version}</version>
164 166
             </dependency>
167
+            <dependency>
168
+                <groupId>org.mapstruct</groupId>
169
+                <artifactId>mapstruct</artifactId>
170
+                <version>${mapstruct.version}</version>
171
+            </dependency>
165 172
         </dependencies>
166 173
     </dependencyManagement>
167 174
     <dependencies>
@@ -191,30 +198,34 @@
191 198
             <url>http://code.jing-tong.com:3000/jie.zhang/maven2/raw/master/</url>
192 199
         </repository>
193 200
     </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>
201
+        <build>
202
+            <plugins>
203
+                <plugin>
204
+                    <groupId>org.apache.maven.plugins</groupId>
205
+                    <artifactId>maven-compiler-plugin</artifactId>
206
+                    <version>3.8.1</version>
207
+                    <configuration>
208
+                        <source>1.8</source>
209
+                        <target>1.8</target>
210
+                        <annotationProcessorPaths>
211
+                            <path>
212
+                                <groupId>org.mapstruct</groupId>
213
+                                <artifactId>mapstruct-processor</artifactId>
214
+                                <version>${mapstruct.version}</version>
215
+                            </path>
216
+                            <path>
217
+                                <groupId>org.projectlombok</groupId>
218
+                                <artifactId>lombok</artifactId>
219
+                                <version>1.18.16</version>
220
+                            </path>
221
+                            <path>
222
+                                <groupId>org.projectlombok</groupId>
223
+                                <artifactId>lombok-mapstruct-binding</artifactId>
224
+                                <version>0.2.0</version>
225
+                            </path>
226
+                        </annotationProcessorPaths>
227
+                    </configuration>
228
+                </plugin>
229
+            </plugins>
230
+        </build>
220 231
 </project>

+ 3 - 2
com/jingtong/base-bpm/maven-metadata-local.xml

@@ -3,10 +3,11 @@
3 3
   <groupId>com.jingtong</groupId>
4 4
   <artifactId>base-bpm</artifactId>
5 5
   <versioning>
6
-    <release>0.0.1</release>
6
+    <release>0.0.2</release>
7 7
     <versions>
8 8
       <version>0.0.1</version>
9
+      <version>0.0.2</version>
9 10
     </versions>
10
-    <lastUpdated>20210811071311</lastUpdated>
11
+    <lastUpdated>20211009021522</lastUpdated>
11 12
   </versioning>
12 13
 </metadata>

+ 1 - 1
com/jingtong/bpm-client-http/0.0.2/_remote.repositories

@@ -1,5 +1,5 @@
1 1
 #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
-#Mon Sep 13 09:15:18 CST 2021
2
+#Sat Oct 09 10:15:27 CST 2021
3 3
 bpm-client-http-0.0.2.pom>=
4 4
 bpm-client-http-0.0.2.jar>=
5 5
 bpm-client-http-0.0.2-sources.jar>=

BIN
com/jingtong/bpm-client-http/0.0.2/bpm-client-http-0.0.2-sources.jar


BIN
com/jingtong/bpm-client-http/0.0.2/bpm-client-http-0.0.2.jar


+ 3 - 2
com/jingtong/bpm-client-http/maven-metadata-local.xml

@@ -3,10 +3,11 @@
3 3
   <groupId>com.jingtong</groupId>
4 4
   <artifactId>bpm-client-http</artifactId>
5 5
   <versioning>
6
-    <release>0.0.1</release>
6
+    <release>0.0.2</release>
7 7
     <versions>
8 8
       <version>0.0.1</version>
9
+      <version>0.0.2</version>
9 10
     </versions>
10
-    <lastUpdated>20210908065927</lastUpdated>
11
+    <lastUpdated>20211009021527</lastUpdated>
11 12
   </versioning>
12 13
 </metadata>

+ 1 - 1
com/jingtong/bpm-client/0.0.2/_remote.repositories

@@ -1,5 +1,5 @@
1 1
 #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
-#Mon Sep 13 09:15:17 CST 2021
2
+#Sat Oct 09 10:15:26 CST 2021
3 3
 bpm-client-0.0.2.pom>=
4 4
 bpm-client-0.0.2-sources.jar>=
5 5
 bpm-client-0.0.2.jar>=

BIN
com/jingtong/bpm-client/0.0.2/bpm-client-0.0.2-sources.jar


BIN
com/jingtong/bpm-client/0.0.2/bpm-client-0.0.2.jar


+ 3 - 2
com/jingtong/bpm-client/maven-metadata-local.xml

@@ -3,10 +3,11 @@
3 3
   <groupId>com.jingtong</groupId>
4 4
   <artifactId>bpm-client</artifactId>
5 5
   <versioning>
6
-    <release>0.0.1</release>
6
+    <release>0.0.2</release>
7 7
     <versions>
8 8
       <version>0.0.1</version>
9
+      <version>0.0.2</version>
9 10
     </versions>
10
-    <lastUpdated>20210908065926</lastUpdated>
11
+    <lastUpdated>20211009021526</lastUpdated>
11 12
   </versioning>
12 13
 </metadata>

+ 1 - 2
com/jingtong/bpm-core/0.0.2/_remote.repositories

@@ -1,5 +1,4 @@
1 1
 #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
-#Mon Sep 13 09:15:26 CST 2021
2
+#Sat Oct 09 10:15:36 CST 2021
3 3
 bpm-core-0.0.2.pom>=
4
-bpm-core-0.0.2-sources.jar>=
5 4
 bpm-core-0.0.2.jar>=

BIN
com/jingtong/bpm-core/0.0.2/bpm-core-0.0.2.jar