Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gazer2kanlin committed Mar 16, 2017
1 parent 40d40e2 commit 3bfcdf6
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ after_success:
- bash <(curl -s https://codecov.io/bash)

jdk:
- oraclejdk8
- oraclejdk7
- openjdk6

branches:
Expand Down
46 changes: 46 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,52 @@ Provide message manager to verify and validate I/O message.
### Call In/Out
Define interface to handle I/O message.

## Maven
Because uia.comm uses [uia.utils](https://github.com/gazer2kanlin/uia.utils4j) deployed on jcenter, configure local Maven __settings.xml__ first.

settings.xml in .m2 directory:
```
<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray-plugins</name>
<url>http://jcenter.bintray.com</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
```
pom.xml in your project:
```
<dependency>
<groupId>uia</groupId>
<artifactId>uia.comm</artifactId>
<version>0.2.0</version>
</dependency>
```

## Dependency Libraries

* [uia.utils](https://github.com/gazer2kanlin/uia.utils4j) - UIA common utilities

## Copyright and License

Expand Down
7 changes: 1 addition & 6 deletions uia.comm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>uia</groupId>
<artifactId>uia.comm</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
<packaging>jar</packaging>
<name>uia.comm</name>
<url>https://github.com/gazer2kanlin/uia.comm4j</url>
Expand All @@ -19,11 +19,6 @@
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-primitives</artifactId>
<version>r03</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
Expand Down

0 comments on commit 3bfcdf6

Please sign in to comment.