|
@@ -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>
|
|
|
|