Skip to content

Commit f197ead

Browse files
author
Yasuyuki Takeo
committed
Merge branch 'release/0.2'
2 parents 2cc3627 + 4c30a17 commit f197ead

16 files changed

Lines changed: 139 additions & 66 deletions

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Smaregi API
2-
[![Build Status](https://travis-ci.org/yasuflatland-lf/smaregi-api.svg?branch=master)](https://travis-ci.org/yasuflatland-lf/smaregi-api) [![Coverage Status](https://coveralls.io/repos/github/yasuflatland-lf/smaregi-api/badge.svg)](https://coveralls.io/github/yasuflatland-lf/smaregi-api)
2+
[![Build Status](https://travis-ci.org/yasuflatland-lf/smaregi-api.svg?branch=master)](https://travis-ci.org/yasuflatland-lf/smaregi-api) [![Build status](https://ci.appveyor.com/api/projects/status/3q021gg5w5jfphvk/branch/master?svg=true)](https://ci.appveyor.com/project/yasuflatland-lf/smaregi-api/branch/master) [![Coverage Status](https://coveralls.io/repos/github/yasuflatland-lf/smaregi-api/badge.svg?branch=master)](https://coveralls.io/github/yasuflatland-lf/smaregi-api?branch=master)
33

44

55
Smaregi REST API Java wrapper with simple JSON mappings.
@@ -14,7 +14,7 @@ Smaregi API version below complies Extenal Interface specifications (POS) docume
1414

1515
| Smaregi API version | this library version |
1616
| :--- | :--- |
17-
| 3.10.0 | 0.1 |
17+
| 3.10.0 | 0.2 |
1818

1919
## Usage
2020
For the detailed usage, please see [SmaregiClientRealTest.groovy](https://github.com/yasuflatland-lf/smaregi-api/blob/develop/src/test/groovy/jp/creollc/smaregi/impl/SmaregiClientRealTest.groovy) The basic samples are as below:
@@ -29,7 +29,7 @@ repositories {
2929
}
3030

3131
dependencies {
32-
compile group: 'jp.creollc', name: 'smaregi-api', version: '0.1'
32+
compile group: 'jp.creollc', name: 'smaregi-api', version: '0.2'
3333
}
3434
```
3535

β€Žbuild.gradleβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ sourceCompatibility = '1.8'
3636
// Temporally library publish method.
3737
// When it becomes stable, should be published to Maven repository.
3838
group = 'jp.creollc'
39-
version = '0.1'
39+
version = '0.2'
4040

4141
publishing {
4242
publications {
127 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
df4e74e7034e20de357f77c742b1b9e4
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8bea4638188b0dd68b99693119e6029526d5cb17
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>jp.creollc</groupId>
6+
<artifactId>smaregi-api</artifactId>
7+
<version>0.2</version>
8+
<dependencies>
9+
<dependency>
10+
<groupId>com.google.guava</groupId>
11+
<artifactId>guava</artifactId>
12+
<version>27.0.1-jre</version>
13+
<scope>compile</scope>
14+
</dependency>
15+
<dependency>
16+
<groupId>ch.qos.logback</groupId>
17+
<artifactId>logback-classic</artifactId>
18+
<version>1.2.3</version>
19+
<scope>compile</scope>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.apache.httpcomponents</groupId>
23+
<artifactId>httpclient</artifactId>
24+
<version>4.5.9</version>
25+
<scope>compile</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.apache.commons</groupId>
29+
<artifactId>commons-text</artifactId>
30+
<version>1.6</version>
31+
<scope>compile</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>commons-io</groupId>
35+
<artifactId>commons-io</artifactId>
36+
<version>2.6</version>
37+
<scope>compile</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.fasterxml.jackson.core</groupId>
41+
<artifactId>jackson-core</artifactId>
42+
<version>2.9.+</version>
43+
<scope>compile</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.fasterxml.jackson.core</groupId>
47+
<artifactId>jackson-databind</artifactId>
48+
<version>2.9.+</version>
49+
<scope>compile</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>com.fasterxml.jackson.core</groupId>
53+
<artifactId>jackson-annotations</artifactId>
54+
<version>2.9.+</version>
55+
<scope>compile</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.codehaus.groovy</groupId>
59+
<artifactId>groovy-all</artifactId>
60+
<version>2.5.+</version>
61+
<scope>compile</scope>
62+
</dependency>
63+
</dependencies>
64+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1e4bb1d575d59af709ebca19e09da270
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ca32065db0072934b6bf9f790c6583fc81e92d61

β€Žreleases/jp/creollc/smaregi-api/maven-metadata.xmlβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
<groupId>jp.creollc</groupId>
44
<artifactId>smaregi-api</artifactId>
55
<versioning>
6-
<release>0.1</release>
6+
<release>0.2</release>
77
<versions>
88
<version>0.1</version>
9+
<version>0.2</version>
910
</versions>
10-
<lastUpdated>20190715022827</lastUpdated>
11+
<lastUpdated>20190715122942</lastUpdated>
1112
</versioning>
1213
</metadata>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fc7ff4cdaf051c3d2c31f8251c7f8b27
1+
fcea24a4782b67d590580efed702cc9e

0 commit comments

Comments
Β (0)