java110
2023-07-26 c2e5bb5699586ed5d6164bbf1bf835d1f06a138a
调整为微服务版
12个文件已修改
237 ■■■■■ 已修改文件
service-acct/pom.xml 45 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-common/pom.xml 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-community/pom.xml 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-dev/pom.xml 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-fee/pom.xml 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-job/pom.xml 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-oa/pom.xml 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-order/pom.xml 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-report/pom.xml 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-scm/pom.xml 70 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-store/pom.xml 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-user/pom.xml 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-acct/pom.xml
@@ -6,16 +6,21 @@
    <version>1.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>service-acct</artifactId>
  <packaging>jar</packaging>
  <name>service-acct</name>
  <url>http://maven.apache.org</url>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.java110</groupId>
      <artifactId>java110-service</artifactId>
@@ -24,47 +29,11 @@
      <groupId>com.alipay.sdk</groupId>
      <artifactId>alipay-sdk-java</artifactId>
    </dependency>
<!--    <dependency>-->
<!--      <groupId>com.icbc</groupId>-->
<!--      <artifactId>b2cVerify</artifactId>-->
<!--      <version>2.0.0.5</version>-->
<!--    </dependency>-->
<!--    <dependency>-->
<!--      <groupId>com.icbc</groupId>-->
<!--      <artifactId>icbc</artifactId>-->
<!--      <version>2.0.0.5</version>-->
<!--    </dependency>-->
<!--    <dependency>-->
<!--      <groupId>com.icbc</groupId>-->
<!--      <artifactId>icbc-api-sdk-cop</artifactId>-->
<!--      <version>2.0.0.5</version>-->
<!--    </dependency>-->
<!--    <dependency>-->
<!--      <groupId>com.icbc</groupId>-->
<!--      <artifactId>icbc-api-sdk-cop-io</artifactId>-->
<!--      <version>v1.0</version>-->
<!--    </dependency>-->
<!--    <dependency>-->
<!--      <groupId>com.icbc</groupId>-->
<!--      <artifactId>icbc-ca</artifactId>-->
<!--      <version>2.0.0.5</version>-->
<!--    </dependency>-->
    <!-- 浦发银行专用 -->
        <dependency>
          <groupId>cn.hutool</groupId>
          <artifactId>hutool-all</artifactId>
          <version>5.6.5</version>
        </dependency>
        <dependency>
          <groupId>org.bouncycastle</groupId>
          <artifactId>bcprov-jdk15to18</artifactId>
          <version>1.68</version>
        </dependency>
  </dependencies>
  <build>
    <finalName>service-acct</finalName>
    <plugins>
service-common/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
@@ -7,27 +8,36 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-common</artifactId>
    <name>service-common</name>
    <url>http://www.example.com</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-bpmn-layout</artifactId>
        </dependency>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-spring-boot-starter-basic</artifactId>
        </dependency>
        <dependency>
            <groupId>org.activiti</groupId>
            <artifactId>activiti-json-converter</artifactId>
@@ -59,9 +69,13 @@
            <artifactId>batik-svggen</artifactId>
            <version>1.7</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-common</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
@@ -97,5 +111,6 @@
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
service-community/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
@@ -7,23 +8,34 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-community</artifactId>
    <packaging>jar</packaging>
    <name>service-community</name>
    <url>http://www.example.com</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-community</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
@@ -59,5 +71,6 @@
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>
service-dev/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
@@ -7,22 +8,31 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-dev</artifactId>
    <name>service-dev</name>
    <url>http://www.example.com</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-dev</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
@@ -58,5 +68,6 @@
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
</project>
service-fee/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
@@ -7,23 +8,32 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-fee</artifactId>
    <packaging>jar</packaging>
    <name>service-fee</name>
    <url>http://www.example.com</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-fee</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
@@ -59,5 +69,6 @@
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>
service-job/pom.xml
@@ -6,37 +6,47 @@
        <groupId>com.java110</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <artifactId>service-job</artifactId>
    <packaging>jar</packaging>
    <name>service-job</name>
    <url>http://maven.apache.org</url>
    <properties>
        <java.version>1.8</java.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.quartz-scheduler</groupId>
            <artifactId>quartz</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-job</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
@@ -72,5 +82,7 @@
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>
service-oa/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
@@ -7,22 +8,29 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-oa</artifactId>
    <name>service-oa</name>
    <url>http://www.example.com</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-oa</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
@@ -58,5 +66,6 @@
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
service-order/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
@@ -7,28 +8,36 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-order</artifactId>
    <name>service-order</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
        </dependency>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-interface</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
@@ -36,8 +45,10 @@
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-order</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
@@ -91,5 +102,8 @@
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>
service-report/pom.xml
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <parent>
@@ -7,22 +8,31 @@
    <version>1.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>service-report</artifactId>
  <name>service-report</name>
  <url>http://www.example.com</url>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.java110</groupId>
      <artifactId>java110-service</artifactId>
    </dependency>
  </dependencies>
  <build>
    <finalName>service-report</finalName>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
@@ -58,5 +68,6 @@
            </configuration>
          </plugin>
        </plugins>
  </build>
</project>
</project>
service-scm/pom.xml
@@ -31,41 +31,41 @@
    <build>
        <finalName>service-scm</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.10</version>
                <executions>
                    <execution>
                        <id>unpack</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>com.java110</groupId>
                                    <artifactId>java110-interface</artifactId>
                                    <version>${microcommunity.version}</version>
                                    <type>jar</type>
                                    <overWrite>true</overWrite>
                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.java110.scm.ScmServiceApplicationStart</mainClass>
                </configuration>
            </plugin>
        </plugins>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-dependency-plugin</artifactId>
                    <version>2.10</version>
                    <executions>
                        <execution>
                            <id>unpack</id>
                            <phase>generate-resources</phase>
                            <goals>
                                <goal>unpack</goal>
                            </goals>
                            <configuration>
                                <artifactItems>
                                    <artifactItem>
                                        <groupId>com.java110</groupId>
                                        <artifactId>java110-interface</artifactId>
                                        <version>${microcommunity.version}</version>
                                        <type>jar</type>
                                        <overWrite>true</overWrite>
                                        <outputDirectory>${project.build.directory}/classes</outputDirectory>
                                    </artifactItem>
                                </artifactItems>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <configuration>
                        <mainClass>com.java110.scm.ScmServiceApplicationStart</mainClass>
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>
service-store/pom.xml
@@ -6,21 +6,31 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-store</artifactId>
    <packaging>jar</packaging>
    <name>service-store</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-store</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
@@ -56,5 +66,6 @@
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>
service-user/pom.xml
@@ -6,23 +6,33 @@
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>service-user</artifactId>
    <packaging>jar</packaging>
    <name>service-user</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.java110</groupId>
            <artifactId>java110-service</artifactId>
        </dependency>
    </dependencies>
    <build>
        <finalName>service-user</finalName>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
@@ -58,5 +68,6 @@
                    </configuration>
                </plugin>
            </plugins>
    </build>
</project>