java110 vor 3 Jahren
Ursprung
Commit
880fc6d48b

+ 38 - 0
service-acct/pom.xml

@@ -25,4 +25,42 @@
       <artifactId>alipay-sdk-java</artifactId>
     </dependency>
   </dependencies>
+  <build>
+    <finalName>service-acct</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.acct.AcctServiceApplicationStart</mainClass>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>

+ 38 - 0
service-common/pom.xml

@@ -60,4 +60,42 @@
             <version>1.7</version>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-common</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.common.CommonServiceApplicationStart</mainClass>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

+ 38 - 0
service-community/pom.xml

@@ -22,4 +22,42 @@
             <artifactId>java110-service</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-community</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.community.CommunityServiceApplicationStart</mainClass>
+	                </configuration>
+	            </plugin>
+	        </plugins>
+    </build>
 </project>

+ 38 - 0
service-dev/pom.xml

@@ -21,4 +21,42 @@
             <artifactId>java110-service</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-dev</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.dev.DevServiceApplicationStart</mainClass>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

+ 38 - 0
service-fee/pom.xml

@@ -22,4 +22,42 @@
             <artifactId>java110-service</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-fee</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.fee.FeeServiceApplicationStart</mainClass>
+	                </configuration>
+	            </plugin>
+	        </plugins>
+    </build>
 </project>

+ 38 - 0
service-job/pom.xml

@@ -35,4 +35,42 @@
             <artifactId>spring-boot-starter-thymeleaf</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-job</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.job.JobServiceApplication</mainClass>
+	                </configuration>
+	            </plugin>
+	        </plugins>
+    </build>
 </project>

+ 38 - 0
service-oa/pom.xml

@@ -21,4 +21,42 @@
             <artifactId>java110-service</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-oa</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.oa.OaServiceApplicationStart</mainClass>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

+ 56 - 0
service-order/pom.xml

@@ -36,4 +36,60 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-order</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.order.OrderServiceApplicationStart</mainClass>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.10.4</version>
+                    <configuration>
+                        <aggregate>true</aggregate>
+                        <reportOutputDirectory>../javadocs</reportOutputDirectory>
+                        <destDir>security-javadoc</destDir>
+                        <javadocExecutable>${java.home}bin/javadoc</javadocExecutable>
+                        <tags>
+                            <tag>
+                                <name>Description</name>
+                                <placement>a</placement>
+                                <head>功能描述:</head>
+                            </tag>
+                        </tags>
+                    </configuration>
+                </plugin>
+            </plugins>
+    </build>
 </project>

+ 38 - 0
service-report/pom.xml

@@ -21,4 +21,42 @@
       <artifactId>java110-service</artifactId>
     </dependency>
   </dependencies>
+  <build>
+    <finalName>service-report</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.report.ReportServiceApplicationStart</mainClass>
+	        </configuration>
+	      </plugin>
+	    </plugins>
+  </build>
 </project>

+ 38 - 0
service-store/pom.xml

@@ -19,4 +19,42 @@
             <artifactId>java110-service</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-store</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.store.StoreServiceApplicationStart</mainClass>
+	                </configuration>
+	            </plugin>
+	        </plugins>
+    </build>
 </project>

+ 38 - 0
service-user/pom.xml

@@ -21,4 +21,42 @@
             <artifactId>java110-service</artifactId>
         </dependency>
     </dependencies>
+    <build>
+        <finalName>service-user</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.user.UserServiceApplicationStart</mainClass>
+	                </configuration>
+	            </plugin>
+	        </plugins>
+    </build>
 </project>