فهرست منبع

完善提交中央仓库pom的标准化

bryan.zhang 5 سال پیش
والد
کامیت
31d95df361
3فایلهای تغییر یافته به همراه46 افزوده شده و 1 حذف شده
  1. 1 0
      liteflow-core/pom.xml
  2. 1 1
      liteflow-spring-boot-starter/pom.xml
  3. 44 0
      pom.xml

+ 1 - 0
liteflow-core/pom.xml

@@ -5,6 +5,7 @@
     <artifactId>liteflow-core</artifactId>
     <packaging>jar</packaging>
     <modelVersion>4.0.0</modelVersion>
+	<description>liteflow core</description>
 
     <parent>
 		<groupId>com.yomahub</groupId>

+ 1 - 1
liteflow-spring-boot-starter/pom.xml

@@ -8,8 +8,8 @@
         <version>2.2.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-
     <artifactId>liteflow-spring-boot-starter</artifactId>
+    <description>liteflow springboot starter</description>
 
     <dependencies>
         <dependency>

+ 44 - 0
pom.xml

@@ -6,6 +6,35 @@
     <packaging>pom</packaging>
     <modelVersion>4.0.0</modelVersion>
     <version>2.2.0-SNAPSHOT</version>
+	<description>a lightweight and practical micro-process framework</description>
+
+	<licenses>
+		<license>
+			<name>MIT License</name>
+			<url>https://opensource.org/licenses/MIT</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+
+	<developers>
+		<developer>
+			<email>weenyc31@163.com</email>
+			<name>bryan.zhang</name>
+			<url>https://github.com/bryan31</url>
+			<id>bryan31</id>
+		</developer>
+	</developers>
+
+	<issueManagement>
+		<system>Github Issue</system>
+		<url>https://github.com/bryan31/liteflow/issues</url>
+	</issueManagement>
+
+	<scm>
+		<connection>scm:git@github.com:bryan31/liteflow.git</connection>
+		<developerConnection>scm:git@github.com:bryan31/liteflow.git</developerConnection>
+		<url>git@github.com:bryan31/liteflow.git</url>
+	</scm>
 
     <properties>
     	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -134,6 +163,21 @@
 					<skipTests>true</skipTests>
 				</configuration>
 			</plugin>
+			<plugin>
+				<artifactId>maven-source-plugin</artifactId>
+				<version>2.4</version>
+				<configuration>
+					<attach>true</attach>
+				</configuration>
+				<executions>
+					<execution>
+						<phase>package</phase>
+						<goals>
+							<goal>jar-no-fork</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
         </plugins>
     </build>