Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
王家俊 committed Jul 25, 2018
1 parent aa4d35c commit 0b1fcba
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ java promise是Promise A+规范的java实现版本。Promise A+是commonJs规范
<dependency>
<groupId>com.wjj</groupId>
<artifactId>promise</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```
```java
Expand Down
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<distributionManagement>
<repository>
<id>wjj-maven-repo</id>
<url>file:D:/wjj/github/maven-repo</url>
<url>file:E:/wjj/github/maven-repo</url>
</repository>
</distributionManagement>
<dependencies>
Expand Down Expand Up @@ -67,6 +67,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0b1fcba

Please sign in to comment.