Source/UBCS/pom.xml
@@ -10,6 +10,7 @@ <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> @@ -28,8 +29,6 @@ <docker.password>Harbor12345</docker.password> <docker.namespace>ubcs</docker.namespace> <docker.plugin.version>1.4.13</docker.plugin.version> <!-- å忍¡åæå®é ç®å½å±æ¬¡å®ä¹ç¸å¯¹æ°æ®ï¼ä½¿æææå¡æ¨¡åè¾åºèµæºæ±èå°ç¸åç®å½ï¼è¯¦è§åç®å½å®ä¹ç¤ºä¾ --> <boot-jar-output>${project.build.directory}</boot-jar-output> </properties> <modules> @@ -42,7 +41,6 @@ <module>ubcs-plugin-api</module> <module>ubcs-service</module> <module>ubcs-service-api</module> <module>ubcs-codeApply</module> </modules> <dependencyManagement> @@ -117,7 +115,7 @@ </resource> </resources> <pluginManagement> <!--<plugins> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> @@ -148,8 +146,8 @@ <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> </configuration> <!–åæå¡æ·»å å¦ä¸é ç½®ï¼è¿è¡ mvn deploy å½ä»¤ä¾¿ä¼èªå¨æå éå–> <!–<executions> <!--åæå¡æ·»å å¦ä¸é ç½®ï¼è¿è¡ mvn deploy å½ä»¤ä¾¿ä¼èªå¨æå éå--> <!--<executions> <execution> <id>default</id> <goals> @@ -157,7 +155,7 @@ <goal>push</goal> </goals> </execution> </executions>–> </executions>--> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -170,7 +168,7 @@ </goals> <configuration> <tasks> <!–suppress UnresolvedMavenProperty –> <!--suppress UnresolvedMavenProperty --> <copy overwrite="true" tofile="${session.executionRootDirectory}/target/${project.artifactId}.jar" file="${project.build.directory}/${project.artifactId}.jar" /> @@ -179,91 +177,9 @@ </execution> </executions> </plugin> </plugins>--> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <!-- 妿 spring.boot.version çæ¬ä¿®æ¹ï¼åè¿éä¹è¦è·çä¿®æ¹ --> <configuration> <fork>true</fork> <!--è§£å³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> <!-- å°å¼å ¥ç jar æå ¥å ¶ä¸ --> </goals> </execution> </executions> </plugin> <!--æ¤æä»¶ç¨äºå°ä¾èµå æ½åº--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>../../target/lib</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>lib/</classpathPrefix> <useUniqueVersions>false</useUniqueVersions> </manifest> </archive> </configuration> </plugin> </plugins> </pluginManagement> <!--<plugins> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> @@ -287,9 +203,7 @@ </compilerArgs> </configuration> </plugin> </plugins>--> </plugins> </build> <repositories> Source/UBCS/ubcs-auth/pom.xml
@@ -137,15 +137,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-gateway/pom.xml
@@ -79,15 +79,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-admin/pom.xml
@@ -95,15 +95,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-flow/pom.xml
@@ -93,15 +93,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-log/pom.xml
@@ -43,15 +43,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-report/pom.xml
@@ -47,15 +47,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-resource/pom.xml
@@ -97,15 +97,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-xxljob-admin/pom.xml
@@ -102,15 +102,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-ops/ubcs-xxljob/pom.xml
@@ -38,15 +38,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-applyjtcodeservice/pom.xml
@@ -50,15 +50,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-code/pom.xml
@@ -159,7 +159,7 @@ <build> <plugins> <!--<plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId> <configuration> @@ -176,26 +176,7 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin>--> <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> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-desk/pom.xml
@@ -73,15 +73,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-omd/pom.xml
@@ -86,15 +86,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-system/pom.xml
@@ -51,15 +51,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/UBCS/ubcs-service/ubcs-user/pom.xml
@@ -52,15 +52,23 @@ <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId> </plugin> </plugins> </build> Source/data/applogs/xxl-job/xxl-job-executor-sample-springboot.log
ÎļþÒÑɾ³ý