|
@@ -10,8 +10,8 @@
|
|
|
</parent>
|
|
|
<groupId>com.syjy</groupId>
|
|
|
<artifactId>calculation-spring-boot-starter</artifactId>
|
|
|
- <version>0.0.40</version>
|
|
|
- <!-- <version>0.0.40-SNAPSHOT</version>-->
|
|
|
+ <version>0.0.42</version>
|
|
|
+<!-- <version>0.0.42-SNAPSHOT</version>-->
|
|
|
<name>calculation</name>
|
|
|
<description>Demo project for Spring Boot</description>
|
|
|
<properties>
|
|
@@ -49,7 +49,12 @@
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
<version>42.5.0</version> <!-- 请使用最新的稳定版本 -->
|
|
|
</dependency>
|
|
|
-
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.xugudb/xugu-jdbc -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.xugudb</groupId>
|
|
|
+ <artifactId>xugu-jdbc</artifactId>
|
|
|
+ <version>12.3.4</version>
|
|
|
+ </dependency>
|
|
|
<!--mysql 驱动-->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
@@ -57,19 +62,19 @@
|
|
|
</dependency>
|
|
|
|
|
|
<!--本地使用时候放开-->
|
|
|
- <dependency>
|
|
|
- <groupId>kingbasejdbc4</groupId>
|
|
|
- <artifactId>kingbasejdbc4</artifactId>
|
|
|
- <version>1</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!--发布时候放开-->
|
|
|
<!-- <dependency>-->
|
|
|
- <!-- <groupId>com.alibaba.cloud</groupId>-->
|
|
|
- <!-- <version>2.2.0.RELEASE</version>-->
|
|
|
- <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
|
|
|
+ <!-- <groupId>kingbasejdbc4</groupId>-->
|
|
|
+ <!-- <artifactId>kingbasejdbc4</artifactId>-->
|
|
|
+ <!-- <version>1</version>-->
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
+ <!--发布时候放开-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <version>2.2.0.RELEASE</version>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
<!-- druid 连接池 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
@@ -151,27 +156,38 @@
|
|
|
</snapshotRepository>
|
|
|
|
|
|
<!--csc-->
|
|
|
- <!-- <repository>-->
|
|
|
- <!-- <id>jiayue-csc-releases</id>-->
|
|
|
- <!-- <url>http://49.4.68.219:8888/repository/jiayue-csc-releases/</url>-->
|
|
|
- <!-- </repository>-->
|
|
|
- <!-- <snapshotRepository>-->
|
|
|
- <!-- <id>jiayue-csc-snapshots</id>-->
|
|
|
- <!-- <url>http://49.4.68.219:8888/repository/jiayue-csc-snapshots/</url>-->
|
|
|
- <!-- </snapshotRepository>-->
|
|
|
+<!-- <repository>-->
|
|
|
+<!-- <id>jiayue-csc-releases</id>-->
|
|
|
+<!-- <url>http://49.4.68.219:8888/repository/jiayue-csc-releases/</url>-->
|
|
|
+<!-- </repository>-->
|
|
|
+<!-- <snapshotRepository>-->
|
|
|
+<!-- <id>jiayue-csc-snapshots</id>-->
|
|
|
+<!-- <url>http://49.4.68.219:8888/repository/jiayue-csc-snapshots/</url>-->
|
|
|
+<!-- </snapshotRepository>-->
|
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ <compilerArguments>
|
|
|
+ <bootclasspath>D:\develops\Eclipse Adoptium\jdk-8.0.432.6-hotspot\jre\lib/rt.jar</bootclasspath>
|
|
|
+ </compilerArguments>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<!--独立打包作为服务和对外接口时候需要注释,上传Maven取消注释-->
|
|
|
- <!-- <configuration>-->
|
|
|
- <!-- <skip>true</skip>-->
|
|
|
- <!-- <mainClass>com.syjy.calculate.CalculationApplication</mainClass>-->
|
|
|
- <!-- </configuration>-->
|
|
|
+ <configuration>
|
|
|
+ <skip>true</skip>
|
|
|
+ <mainClass>com.syjy.calculate.CalculationApplication</mainClass>
|
|
|
+ </configuration>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<goals>
|