Browse Source

[feature]增加依赖

JieZ 3 years ago
parent
commit
3b6541b86e

BIN
com/jingtong/.DS_Store


BIN
com/jingtong/common/.DS_Store


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

@@ -1,4 +1,4 @@
1 1
 #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
-#Mon Jul 12 18:58:51 CST 2021
2
+#Mon Jul 12 19:24:13 CST 2021
3 3
 base-0.0.1.jar>=
4 4
 base-0.0.1.pom>=

+ 1 - 1
com/jingtong/common/base/maven-metadata-local.xml

@@ -7,6 +7,6 @@
7 7
     <versions>
8 8
       <version>0.0.1</version>
9 9
     </versions>
10
-    <lastUpdated>20210712105851</lastUpdated>
10
+    <lastUpdated>20210712112413</lastUpdated>
11 11
   </versioning>
12 12
 </metadata>

+ 1 - 1
com/jingtong/common/common/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
-#Mon Jul 12 19:09:47 CST 2021
2
+#Mon Jul 12 19:24:12 CST 2021
3 3
 common-0.0.1.pom>=

+ 1 - 1
com/jingtong/common/common/maven-metadata-local.xml

@@ -7,6 +7,6 @@
7 7
     <versions>
8 8
       <version>0.0.1</version>
9 9
     </versions>
10
-    <lastUpdated>20210712110947</lastUpdated>
10
+    <lastUpdated>20210712112412</lastUpdated>
11 11
   </versioning>
12 12
 </metadata>

BIN
com/jingtong/common/data/.DS_Store


BIN
com/jingtong/common/data/0.0.1/.DS_Store


+ 4 - 0
com/jingtong/common/data/0.0.1/_remote.repositories

@@ -0,0 +1,4 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Mon Jul 12 19:24:13 CST 2021
3
+data-0.0.1.jar>=
4
+data-0.0.1.pom>=

+ 1 - 1
com/jingtong/common/data/maven-metadata-local.xml

@@ -7,6 +7,6 @@
7 7
     <versions>
8 8
       <version>0.0.1</version>
9 9
     </versions>
10
-    <lastUpdated>20210703030127</lastUpdated>
10
+    <lastUpdated>20210712112413</lastUpdated>
11 11
   </versioning>
12 12
 </metadata>

+ 4 - 0
com/jingtong/common/server/0.0.1/_remote.repositories

@@ -0,0 +1,4 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Mon Jul 12 19:24:14 CST 2021
3
+server-0.0.1.jar>=
4
+server-0.0.1.pom>=

BIN
com/jingtong/common/server/0.0.1/server-0.0.1.jar


+ 120 - 0
com/jingtong/common/server/0.0.1/server-0.0.1.pom

@@ -0,0 +1,120 @@
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>com.jingtong.common</groupId>
9
+        <artifactId>common</artifactId>
10
+        <version>0.0.1</version>
11
+    </parent>
12
+
13
+    <artifactId>server</artifactId>
14
+    <version>0.0.1</version>
15
+    <description>SpringBoot Application Server Core Config</description>
16
+
17
+    <dependencies>
18
+        <dependency>
19
+            <groupId>org.springframework.boot</groupId>
20
+            <artifactId>spring-boot-starter-web</artifactId>
21
+        </dependency>
22
+        <dependency>
23
+            <groupId>org.springframework.boot</groupId>
24
+            <artifactId>spring-boot-starter-webflux</artifactId>
25
+        </dependency>
26
+        <dependency>
27
+            <groupId>org.springframework.boot</groupId>
28
+            <artifactId>spring-boot-starter-jdbc</artifactId>
29
+        </dependency>
30
+
31
+        <dependency>
32
+            <groupId>com.jingtong.common</groupId>
33
+            <artifactId>data</artifactId>
34
+            <version>0.0.1</version>
35
+        </dependency>
36
+        <dependency>
37
+            <groupId>com.jingtong.common</groupId>
38
+            <artifactId>base</artifactId>
39
+            <version>0.0.1</version>
40
+        </dependency>
41
+        <dependency>
42
+            <groupId>com.jingtong.common</groupId>
43
+            <artifactId>util</artifactId>
44
+            <version>0.0.1</version>
45
+        </dependency>
46
+        <dependency>
47
+            <groupId>com.baomidou</groupId>
48
+            <artifactId>mybatis-plus</artifactId>
49
+        </dependency>
50
+        <dependency>
51
+            <groupId>com.baomidou</groupId>
52
+            <artifactId>mybatis-plus-boot-starter</artifactId>
53
+        </dependency>
54
+        <dependency>
55
+            <groupId>org.aspectj</groupId>
56
+            <artifactId>aspectjweaver</artifactId>
57
+        </dependency>
58
+        <dependency>
59
+            <groupId>org.mapstruct</groupId>
60
+            <artifactId>mapstruct</artifactId>
61
+        </dependency>
62
+        <dependency>
63
+            <groupId>org.springframework.security</groupId>
64
+            <artifactId>spring-security-jwt</artifactId>
65
+            <version>1.0.10.RELEASE</version>
66
+        </dependency>
67
+        <dependency>
68
+            <groupId>com.github.xiaoymin</groupId>
69
+            <artifactId>knife4j-spring-boot-starter</artifactId>
70
+            <version>${knife4j.version}</version>
71
+        </dependency>
72
+        <dependency>
73
+            <groupId>org.apache.commons</groupId>
74
+            <artifactId>commons-lang3</artifactId>
75
+        </dependency>
76
+        <dependency>
77
+            <groupId>io.github.openfeign</groupId>
78
+            <artifactId>feign-core</artifactId>
79
+        </dependency>
80
+        <!-- xxl-job-core -->
81
+        <dependency>
82
+            <groupId>com.xuxueli</groupId>
83
+            <artifactId>xxl-job-core</artifactId>
84
+        </dependency>
85
+        <dependency>
86
+            <groupId>org.springframework.cloud</groupId>
87
+            <artifactId>spring-cloud-openfeign-core</artifactId>
88
+        </dependency>
89
+        <dependency>
90
+            <groupId>com.alibaba.cloud</groupId>
91
+            <artifactId>spring-cloud-alibaba-seata</artifactId>
92
+            <exclusions>
93
+                <exclusion>
94
+                    <artifactId>seata-all</artifactId>
95
+                    <groupId>io.seata</groupId>
96
+                </exclusion>
97
+            </exclusions>
98
+        </dependency>
99
+        <dependency>
100
+            <groupId>io.seata</groupId>
101
+            <artifactId>seata-all</artifactId>
102
+        </dependency>
103
+        <!--mysql驱动-->
104
+        <dependency>
105
+            <groupId>mysql</groupId>
106
+            <artifactId>mysql-connector-java</artifactId>
107
+        </dependency>
108
+        <dependency>
109
+            <groupId>com.alibaba.cloud</groupId>
110
+            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
111
+        </dependency>
112
+        <!-- https://mvnrepository.com/artifact/cn.afterturn/easypoi-spring-boot-starter -->
113
+        <dependency>
114
+            <groupId>cn.afterturn</groupId>
115
+            <artifactId>easypoi-spring-boot-starter</artifactId>
116
+            <version>4.3.0</version>
117
+        </dependency>
118
+
119
+    </dependencies>
120
+</project>

+ 12 - 0
com/jingtong/common/server/maven-metadata-local.xml

@@ -0,0 +1,12 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<metadata>
3
+  <groupId>com.jingtong.common</groupId>
4
+  <artifactId>server</artifactId>
5
+  <versioning>
6
+    <release>0.0.1</release>
7
+    <versions>
8
+      <version>0.0.1</version>
9
+    </versions>
10
+    <lastUpdated>20210712112414</lastUpdated>
11
+  </versioning>
12
+</metadata>

+ 1 - 1
com/jingtong/common/util/0.0.1/_remote.repositories

@@ -1,4 +1,4 @@
1 1
 #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
-#Mon Jul 12 19:20:06 CST 2021
2
+#Mon Jul 12 19:24:13 CST 2021
3 3
 util-0.0.1.jar>=
4 4
 util-0.0.1.pom>=

+ 1 - 1
com/jingtong/common/util/maven-metadata-local.xml

@@ -7,6 +7,6 @@
7 7
     <versions>
8 8
       <version>0.0.1</version>
9 9
     </versions>
10
-    <lastUpdated>20210712112006</lastUpdated>
10
+    <lastUpdated>20210712112413</lastUpdated>
11 11
   </versioning>
12 12
 </metadata>

+ 3 - 0
com/jingtong/jingtong-base/0.0.1/_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 Jul 12 19:24:12 CST 2021
3
+jingtong-base-0.0.1.pom>=

+ 56 - 0
com/jingtong/jingtong-base/0.0.1/jingtong-base-0.0.1.pom

@@ -0,0 +1,56 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+         xmlns="http://maven.apache.org/POM/4.0.0"
4
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5
+    <modelVersion>4.0.0</modelVersion>
6
+    <groupId>com.jingtong</groupId>
7
+    <artifactId>jingtong-base</artifactId>
8
+    <packaging>pom</packaging>
9
+    <name>jixiang-ic</name>
10
+    <description>jixiang-ic</description>
11
+    <inceptionYear>2019</inceptionYear>
12
+    <parent>
13
+        <groupId>com.jingtong</groupId>
14
+        <artifactId>jingtong-pom</artifactId>
15
+        <version>0.0.1</version>
16
+    </parent>
17
+    <modules>
18
+        <module>common</module>
19
+    </modules>
20
+    <dependencies>
21
+        <dependency>
22
+            <groupId>org.springframework.boot</groupId>
23
+            <artifactId>spring-boot-starter-test</artifactId>
24
+            <scope>test</scope>
25
+        </dependency>
26
+        <dependency>
27
+            <groupId>org.springframework.boot</groupId>
28
+            <artifactId>spring-boot-configuration-processor</artifactId>
29
+            <optional>true</optional>
30
+        </dependency>
31
+        <dependency>
32
+            <groupId>org.projectlombok</groupId>
33
+            <artifactId>lombok</artifactId>
34
+            <version>${lombok.version}</version>
35
+            <optional>true</optional>
36
+        </dependency>
37
+    </dependencies>
38
+
39
+    <build>
40
+        <extensions>
41
+            <extension>
42
+                <groupId>kr.motd.maven</groupId>
43
+                <artifactId>os-maven-plugin
44
+                </artifactId><!--引入操作系统os设置的属性插件,否则${os.detected.classifier} 操作系统版本会找不到 -->
45
+                <version>1.5.0.Final</version>
46
+            </extension>
47
+        </extensions>
48
+        <plugins>
49
+            <plugin>
50
+                <groupId>org.springframework.boot</groupId>
51
+                <artifactId>spring-boot-maven-plugin</artifactId>
52
+                <version>2.3.8.RELEASE</version>
53
+            </plugin>
54
+        </plugins>
55
+    </build>
56
+</project>

+ 12 - 0
com/jingtong/jingtong-base/maven-metadata-local.xml

@@ -0,0 +1,12 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<metadata>
3
+  <groupId>com.jingtong</groupId>
4
+  <artifactId>jingtong-base</artifactId>
5
+  <versioning>
6
+    <release>0.0.1</release>
7
+    <versions>
8
+      <version>0.0.1</version>
9
+    </versions>
10
+    <lastUpdated>20210712112412</lastUpdated>
11
+  </versioning>
12
+</metadata>

BIN
com/jingtong/jingtong-pom/.DS_Store


BIN
com/jingtong/jingtong-pom/0.0.1/.DS_Store


+ 1 - 1
com/jingtong/jingtong-pom/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
-#Mon Jul 12 19:09:37 CST 2021
2
+#Mon Jul 12 19:23:53 CST 2021
3 3
 jingtong-pom-0.0.1.pom>=

+ 4 - 0
com/jingtong/jingtong-pom/0.0.1/jingtong-pom-0.0.1.pom.lastUpdated

@@ -0,0 +1,4 @@
1
+#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2
+#Mon Jul 12 19:23:35 CST 2021
3
+https\://maven.aliyun.com/repository/public/.error=
4
+https\://maven.aliyun.com/repository/public/.lastUpdated=1626089015932

+ 1 - 1
com/jingtong/jingtong-pom/maven-metadata-local.xml

@@ -7,6 +7,6 @@
7 7
     <versions>
8 8
       <version>0.0.1</version>
9 9
     </versions>
10
-    <lastUpdated>20210712110937</lastUpdated>
10
+    <lastUpdated>20210712112353</lastUpdated>
11 11
   </versioning>
12 12
 </metadata>