Skip to content
This repository was archived by the owner on Jan 1, 2019. It is now read-only.

Commit 1f5c9a7

Browse files
author
Jeff Pei
committed
fix #21; remove logback.xml from jar; release 0.9.2
1 parent 3b0989b commit 1f5c9a7

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ Parallec Change Log
66

77
## Version 0.9.2
88

9-
_2015-11-?_
109

10+
_2015-11-29_
11+
12+
* Build/Maven/Logback: exclude logback.xml in the built jar.
1113
* Test: add sleep to make sure server starts first; should fix build issue related to #7
1214
* Test: add coverage: updateRequestByAddingReplaceVarPairNodeSpecific() check null, add some other minor coverage
1315
* Test: fix TcpServerThread (tcp sample server) not closed in test, thus skip idle TCP tests.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![build status](https://img.shields.io/badge/build-info=>-green.svg) [![Build Status](https://travis-ci.org/eBay/parallec.svg?branch=master)](https://travis-ci.org/eBay/parallec) [![Coverage Status](https://img.shields.io/codecov/c/github/eBay/parallec.svg)](https://codecov.io/github/eBay/parallec) [![Apache V2.0 License](http://www.parallec.io/images/apache2.svg) ](https://github.com/eBay/parallec/blob/master/LICENSE)
55

66

7-
![latest 0.9.x](http://img.shields.io/badge/latest_stable-0.9.x=>-green.svg) [ ![latest beta maven central](https://maven-badges.herokuapp.com/maven-central/io.parallec/parallec-core/badge.svg?style=flat)](http://search.maven.org/#artifactdetails|io.parallec|parallec-core|0.9.1|) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/eBay/parallec?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
7+
![latest 0.9.x](http://img.shields.io/badge/latest_stable-0.9.x=>-green.svg) [ ![latest beta maven central](https://maven-badges.herokuapp.com/maven-central/io.parallec/parallec-core/badge.svg?style=flat)](http://search.maven.org/#artifactdetails|io.parallec|parallec-core|0.9.2|) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/eBay/parallec?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
88

99
[![Javadoc](http://www.parallec.io/images/parallec-javadoc-blue.svg)](http://www.parallec.io/javadoc/index.html?io/parallec/core/ParallelClient.html) [![Documentation](http://www.parallec.io/images/parallec-documentation-red.svg)](http://www.parallec.io/docs/) [![Samples](http://www.parallec.io/images/parallec-samples-brightgreen.svg)](https://github.com/eBay/parallec-samples) [![Chinese](http://www.parallec.io/images/parallec-cnbrief-blue.svg)](https://github.com/eBay/parallec/blob/master/README-brief-cn.md)
1010

@@ -27,14 +27,14 @@ Donwload [the latest JAR](https://search.maven.org/remote_content?g=io.parallec&
2727
<dependency>
2828
<groupId>io.parallec</groupId>
2929
<artifactId>parallec-core</artifactId>
30-
<version>0.9.1</version>
30+
<version>0.9.2</version>
3131
</dependency>
3232
```
3333
Snapshots of the development version are available in [Sonatype's `snapshots` repository](https://oss.sonatype.org/content/repositories/snapshots/io/parallec/parallec-core/).
3434

3535
or Gradle:
3636
```xml
37-
compile 'io.parallec:parallec-core:0.9.1'
37+
compile 'io.parallec:parallec-core:0.9.2'
3838
```
3939

4040

@@ -144,6 +144,7 @@ Parallec is built on Akka actors and [Async HTTP Client](https://github.com/Asyn
144144
- Flexible response handling and immediate processing embedded in other applications.
145145
- Handle async APIs with auto progress polling for task level concurrency control.
146146
- Support of other protocols, and [more](https://github.com/eBay/parallec/blob/master/README.md#features)..
147+
- Anyone can write 20 lines to make his/her application become [REST Commander](http://www.restcommander.com/).
147148

148149
With the feedbacks, lessons, and improvements from the past year of internal usage and open source of **[REST Commander](http://www.restcommander.com)**, we now made the core of REST Commander as an easy to use standalone library. We added [**15+ new**](https://github.com/eBay/parallec/blob/master/README.md#compare) features, rewritten 70%+ of the code, with [**90%+ test coverage**](https://codecov.io/github/eBay/parallec) for confident usage and contribution. This time we also structure it better so that most internal development can be directly made here.
149150

pom.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.parallec</groupId>
66
<artifactId>parallec-core</artifactId>
7-
<version>0.9.2-SNAPSHOT</version>
7+
<version>0.9.2</version>
88
<packaging>jar</packaging>
99
<name>io.parallec:parallec-core</name>
1010
<url>https://github.com/eBay/parallec</url>
@@ -231,10 +231,17 @@
231231
</execution>
232232
</executions>
233233
</plugin>
234-
234+
<plugin>
235+
<groupId>org.apache.maven.plugins</groupId>
236+
<artifactId>maven-jar-plugin</artifactId>
237+
<configuration>
238+
<!-- exclude logback.xml -->
239+
<excludes>
240+
<exclude>**/logback.xml</exclude>
241+
</excludes>
242+
</configuration>
243+
</plugin>
235244
</plugins>
236-
237-
238245
</build>
239246

240247
<profiles>

0 commit comments

Comments
 (0)