commit
2a28507ae9
4 changed files with 24 additions and 6 deletions
|
@ -14,5 +14,3 @@ deploy:
|
|||
script: sh .travis-support/deploy.sh
|
||||
on:
|
||||
branch: master
|
||||
env:
|
||||
global:
|
||||
|
|
13
CHANGELOG
13
CHANGELOG
|
@ -1,6 +1,19 @@
|
|||
CHANGELOG
|
||||
=========
|
||||
|
||||
0.3.0
|
||||
-----
|
||||
|
||||
*
|
||||
|
||||
0.2.0
|
||||
-----
|
||||
|
||||
* `TypeAlias.getValue()` is not `final`
|
||||
* Added `TypeAlias.map()`
|
||||
* `Mon.map()` and `Mon.flatMap()` are `final`
|
||||
* Codacy Quality clean up
|
||||
|
||||
0.1.0
|
||||
-----
|
||||
|
||||
|
|
|
@ -15,12 +15,14 @@ TypeAlias for Java
|
|||
<dependency>
|
||||
<groupId>net.kemitix</groupId>
|
||||
<artifactId>mon</artifactId>
|
||||
<version>${mon.version}</version>
|
||||
<version>0.3.0</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
### TypeAlias
|
||||
|
||||
```java
|
||||
class Goal extends TypeAlias<String> {
|
||||
private Goal(final String goal) {
|
||||
|
|
11
pom.xml
11
pom.xml
|
@ -10,19 +10,24 @@
|
|||
<version>3.2.4</version>
|
||||
</parent>
|
||||
<artifactId>mon</artifactId>
|
||||
<version>0.2.0-SNAPSHOT</version>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<junit.version>4.12</junit.version>
|
||||
<assertj-core.version>3.8.0</assertj-core.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<version>${junit.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<version>3.8.0</version>
|
||||
<version>${assertj-core.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
|
Loading…
Reference in a new issue