Source/UBCS/pom.xml
@@ -10,7 +10,6 @@ <properties> <bladex.project.version>3.0.1.RELEASE</bladex.project.version> <java.version>1.8</java.version> <maven.plugin.version>3.8.0</maven.plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -29,6 +28,7 @@ <docker.password>Harbor12345</docker.password> <docker.namespace>ubcs</docker.namespace> <docker.plugin.version>1.4.13</docker.plugin.version> <server.lib.path>../../target/libs</server.lib.path> </properties> <modules> @@ -41,6 +41,7 @@ <module>ubcs-plugin-api</module> <module>ubcs-service</module> <module>ubcs-service-api</module> <!--<module>ubcs-codeApply</module>--> </modules> <dependencyManagement> @@ -106,6 +107,13 @@ <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>bootstrap.yml</exclude> <exclude>application.yml</exclude> <exclude>application-dev.yml</exclude> <exclude>application-test.yml</exclude> <exclude>application-prop.yml</exclude> </excludes> </resource> <resource> <directory>src/main/java</directory> @@ -119,91 +127,91 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <version>${spring.boot.version}</version> <!-- 妿 spring.boot.version çæ¬ä¿®æ¹ï¼åè¿éä¹è¦è·çä¿®æ¹ --> <configuration> <fork>true</fork> <finalName>${project.build.finalName}</finalName> <!--è§£å³windowså½ä»¤è¡çªå£ä¸æä¹±ç --> <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments> <!-- æå¼ä¾èµ--> <layout>ZIP</layout> <outputDirectory>../../target</outputDirectory> <includes> <include> <!-- æé¤ææJar --> <groupId>nothing</groupId> <artifactId>nothing</artifactId> </include> </includes> </configuration> <executions> <execution> <goals> <goal>repackage</goal> <goal>repackage</goal> <!-- å°å¼å ¥ç jar æå ¥å ¶ä¸ --> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <version>${docker.plugin.version}</version> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> </configuration> <!--åæå¡æ·»å å¦ä¸é ç½®ï¼è¿è¡ mvn deploy å½ä»¤ä¾¿ä¼èªå¨æå éå--> <!--<executions> <execution> <id>default</id> <goals> <goal>build</goal> <goal>push</goal> </goals> </execution> </executions>--> </plugin> <!--æ¤æä»¶ç¨äºå°ä¾èµå æ½åº--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>run</goal> <goal>copy-dependencies</goal> </goals> <configuration> <tasks> <!--suppress UnresolvedMavenProperty --> <copy overwrite="true" tofile="${session.executionRootDirectory}/target/${project.artifactId}.jar" file="${project.build.directory}/${project.artifactId}.jar" /> </tasks> <outputDirectory>${server.lib.path}</outputDirectory> <excludeTransitive>false</excludeTransitive> <stripVersion>false</stripVersion> <includeScope>runtime</includeScope> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> <compilerArgs> <arg>-parameters</arg> </compilerArgs> </configuration> </plugin> <!-- åºäºmaven-jar-pluginæä»¶å®ç°æä¾èµjarå®ä¹åå ¥è¾åºjarçMETA-INFO/MANIFESTæä»¶ --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <!--<classpathPrefix>./libs</classpathPrefix>--> <classpathPrefix>/data1/ubcs/ubcs-server/libs</classpathPrefix> <useUniqueVersions>false</useUniqueVersions> </manifest> </archive> <excludes> <exclude>application-dev.yml</exclude> <exclude>application-prod.yml</exclude> <exclude>application.yml</exclude> <exclude>lib/*</exclude> </excludes> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> <compilerArgs> <arg>-parameters</arg> </compilerArgs> </configuration> </plugin> </plugins> </build> <repositories> Source/UBCS/service-systemctl-restart.sh
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,84 @@ # 1ãæå mvn clean package echo '-----------------------------------------------------------' echo '---------------mvn clean packageå½ä»¤æ§è¡å®æ------------------' echo '-----------------------------------------------------------' # 2ãå¤å¶libsä¾èµæä»¶å°æå®ç®å½ cp ./target/libs/* /data1/ubcs/ubcs-server/libs echo '-----------------------------------------------------------' echo '--------------------libsä¸jarå¤å¶å®æ------------------------' echo '-----------------------------------------------------------' # 3ãå¤å¶æ¯ä¸ªæå¡jarè¿è¡æ¿æ¢ echo '-------------------ubcs-admin æå¡æ£å¨éå¯--------------------' cp ./target/ubcs-admin.jar /data1/ubcs/ubcs-server/libs/ubcs_admin/ systemctl restart ubcs-admin.service echo '---------------ubcs-admin æå¡éå¯å½ä»¤æ§è¡å®æ¯------------------' echo '--------------ubcs-applyjtcodeservice æå¡æ£å¨éå¯------------' cp ./target/ubcs-applyjtcodeservice.jar /data1/ubcs/ubcs-server/libs/ubcs_applyjtcodeservice/ systemctl restart ubcs-applyjtcodeservice.service echo '----------ubcs-applyjtcodeservice æå¡éå¯å½ä»¤æ§è¡å®æ¯----------' echo '-------------------ubcs-auth æå¡æ£å¨éå¯------------------ --' cp ./target/ubcs-auth.jar /data1/ubcs/ubcs-server/libs/ubcs_auth/ systemctl restart ubcs-auth.service echo '---------------ubcs-auth æå¡éå¯å½ä»¤æ§è¡å®æ¯-------------------' echo '-------------------ubcs-code æå¡æ£å¨éå¯---------------------' cp ./target/ubcs-code.jar /data1/ubcs/ubcs-server/libs/ubcs_code/ systemctl restart ubcs-code.service echo '---------------ubcs-code æå¡éå¯å½ä»¤æ§è¡å®æ¯-------------------' echo '-------------------ubcs-desk æå¡æ£å¨éå¯---------------------' cp ./target/ubcs-desk.jar /data1/ubcs/ubcs-server/libs/ubcs_desk/ systemctl restart ubcs-desk.service echo '---------------ubcs-desk æå¡éå¯å½ä»¤æ§è¡å®æ¯-------------------' echo '-------------------ubcs-flow æå¡æ£å¨éå¯--------------------' cp ./target/ubcs-flow.jar /data1/ubcs/ubcs-server/libs/ubcs_flow/ systemctl restart ubcs-flow.service echo '---------------ubcs-flow æå¡éå¯å½ä»¤æ§è¡å®æ¯------------------' echo '-------------------ubcs-gateway æå¡æ£å¨éå¯-----------------' cp ./target/ubcs-gateway.jar /data1/ubcs/ubcs-server/libs/ubcs_gateway/ systemctl restart ubcs-gateway.service echo '---------------ubcs-gateway æå¡éå¯å½ä»¤æ§è¡å®æ¯---------------' echo '-------------------ubcs-log æå¡æ£å¨éå¯---------------------' cp ./target/ubcs-log.jar /data1/ubcs/ubcs-server/libs/ubcs_log/ systemctl restart ubcs-log.service echo '---------------ubcs-log æå¡éå¯å½ä»¤æ§è¡å®æ¯-------------------' echo '-------------------ubcs-omd æå¡æ£å¨éå¯---------------------' cp ./target/ubcs-omd.jar /data1/ubcs/ubcs-server/libs/ubcs_omd/ systemctl restart ubcs-omd.service echo '---------------ubcs-omd æå¡éå¯å½ä»¤æ§è¡å®æ¯-------------------' echo '-------------------ubcs-report æå¡æ£å¨éå¯-------------------' cp ./target/ubcs-report.jar /data1/ubcs/ubcs-server/libs/ubcs_report/ systemctl restart ubcs-report.service echo '---------------ubcs-report æå¡éå¯å½ä»¤æ§è¡å®æ¯-----------------' echo '-------------------ubcs-resource æå¡æ£å¨éå¯------------------' cp ./target/ubcs-resource.jar /data1/ubcs/ubcs-server/libs/ubcs_resource/ systemctl restart ubcs-resource.service echo '---------------ubcs-resource æå¡éå¯å½ä»¤æ§è¡å®æ¯----------------' echo '-------------------ubcs-system æå¡æ£å¨éå¯---------------------' cp ./target/ubcs-system.jar /data1/ubcs/ubcs-server/libs/ubcs_system/ systemctl restart ubcs-system.service echo '---------------ubcs-system æå¡éå¯å½ä»¤æ§è¡å®æ¯-------------------' echo '--------------------ubcs-user æå¡æ£å¨éå¯----------------------' cp ./target/ubcs-user.jar /data1/ubcs/ubcs-server/libs/ubcs_user/ systemctl restart ubcs-user.service echo '----------------ubcs-user æå¡éå¯å½ä»¤æ§è¡å®æ¯--------------------' Source/UBCS/ubcs-auth/pom.xml
@@ -132,28 +132,50 @@ <artifactId>activation</artifactId> <version>1.1.1</version> </dependency>--> <dependency> <groupId>com.vci.ubcs</groupId> <artifactId>ubcs-util-api</artifactId> <version>3.0.1.RELEASE</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> <outputDirectory>../target</outputDirectory> </configuration> </plugin> <!--<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <outputDirectory>./target/libs</outputDirectory> </configuration> </plugin>--> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>../target/libs</outputDirectory> <excludeTransitive>false</excludeTransitive> <stripVersion>false</stripVersion> <includeScope>runtime</includeScope> </configuration> </execution> </executions> </plugin> </plugins> </build> Source/UBCS/ubcs-gateway/pom.xml
@@ -79,23 +79,40 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> <outputDirectory>../target</outputDirectory> </configuration> </plugin> <!--<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <outputDirectory>./target/libs</outputDirectory> </configuration> </plugin>--> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>../target/libs</outputDirectory> <excludeTransitive>false</excludeTransitive> <stripVersion>false</stripVersion> <includeScope>runtime</includeScope> </configuration> </execution> </executions> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-admin/pom.xml
@@ -95,23 +95,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-develop/pom.xml
@@ -51,20 +51,20 @@ </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> <!--<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build>--> </project> Source/UBCS/ubcs-ops/ubcs-flow/pom.xml
@@ -93,19 +93,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> Source/UBCS/ubcs-ops/ubcs-log/pom.xml
@@ -29,15 +29,15 @@ <groupId>org.springblade</groupId> <artifactId>blade-starter-tenant</artifactId> </dependency> <!-- <dependency>--> <!-- <groupId>com.oracle.database.jdbc</groupId>--> <!-- <artifactId>ojdbc8</artifactId>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>cn.easyproject</groupId>--> <!-- <artifactId>orai18n</artifactId>--> <!-- <version>${orai18n.version}</version>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>com.oracle.database.jdbc</groupId>--> <!-- <artifactId>ojdbc8</artifactId>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>cn.easyproject</groupId>--> <!-- <artifactId>orai18n</artifactId>--> <!-- <version>${orai18n.version}</version>--> <!-- </dependency>--> <dependency> <groupId>com.vci.ubcs</groupId> <artifactId>ubcs-log-api</artifactId> @@ -61,23 +61,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-report/pom.xml
@@ -47,23 +47,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-resource/pom.xml
@@ -97,23 +97,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-applyjtcodeservice/pom.xml
@@ -7,10 +7,9 @@ <artifactId>ubcs-service</artifactId> <version>3.0.1.RELEASE</version> </parent> <groupId>com.vci.ubcs</groupId> <artifactId>ubcs-applyjtcodeservice</artifactId> <name>${project.artifactId}</name> <version>3.0.1.RELEASE</version> <version>${bladex.project.version}</version> <packaging>jar</packaging> <modelVersion>4.0.0</modelVersion> @@ -51,23 +50,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-code/pom.xml
@@ -16,6 +16,11 @@ <modelVersion>4.0.0</modelVersion> <properties> <!-- æå模åå®é ç®å½å±æ¬¡å®ä¹ç¸å¯¹æ°æ®ï¼ä½¿æææå¡æ¨¡åè¾åºèµæºæ±èå°ç¸åç®å½ --> <boot-jar-output>../devops</boot-jar-output> </properties> <dependencies> <dependency> <groupId>com.vci.ubcs</groupId> @@ -91,12 +96,6 @@ <version>3.0.1.RELEASE</version> <scope>compile</scope> </dependency> <!--è¾¾æ¢¦æ°æ®åºé©±å¨--> <!--<dependency> <groupId>com.dameng</groupId> <artifactId>DmJdbcDriver18</artifactId> <optional>true</optional> </dependency>--> <!--axis2 begin --> <dependency> <groupId>org.apache.axis2</groupId> @@ -143,7 +142,6 @@ <scope>compile</scope> </dependency> <!--axis2 end --> <dependency> <groupId>com.vci.ubcs</groupId> <artifactId>ubcs-file-api</artifactId> @@ -155,29 +153,20 @@ <version>3.0.1.RELEASE</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/impl/MdmIOServiceImpl.java
@@ -4378,7 +4378,9 @@ // æ¥è¯¢ä¸éè¦åä¸å ³é®å±æ§æ ¡éªçé¤èªå·±ä»¥å¤çææåç±»oid final String isParticipateCheckOids = classifyService.selectLeafByParentClassifyOid(classifyFullInfo.getTopClassifyVO().getOid(), classifyFullInfo.getCurrentClassifyVO().getOid()); final BladeUser user = AuthUtil.getUser(); List<ClientBusinessObject> repeatDataMap = cboList.parallelStream().filter(cbo -> { cboList = new CopyOnWriteArrayList<>(cboList); // TODO:Thread limit exceeded replacing blocked å¼å¸¸æ¯è¿é¨åä»£ç æåºç,æä»¥ææ¶å°parallelStreamæ¹æäºstream List<ClientBusinessObject> repeatDataMap = cboList.stream().filter(cbo -> { //æ¯è¡é½å¾æ¥è¯¢.å¦æå ¶ä¸åºç°äºéè¯¯ï¼æä»¬å°±ç´æ¥æåºå¼å¸¸ï¼å ¶ä½çæ¾ç¤º //VciBaseUtil.setCurrentUserSessionInfo(sessionInfo); Map<String, String> conditionMap = new HashMap<>(); Source/UBCS/ubcs-service/ubcs-desk/pom.xml
@@ -73,23 +73,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-omd/pom.xml
@@ -86,23 +86,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-system/pom.xml
@@ -32,11 +32,11 @@ <artifactId>ubcs-system-api</artifactId> <version>3.0.1.RELEASE</version> <exclusions> <exclusion> <groupId>org.springblade</groupId> <artifactId>blade-starter-log</artifactId> </exclusion> </exclusions> <exclusion> <groupId>org.springblade</groupId> <artifactId>blade-starter-log</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.vci.ubcs</groupId> @@ -60,23 +60,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-user/pom.xml
@@ -58,23 +58,15 @@ <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> <username>${docker.username}</username> <password>${docker.password}</password> <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> <tag>${project.version}</tag> <useMavenSettingsForAuth>true</useMavenSettingsForAuth> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> <skip>false</skip> </configuration> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build>