Skip to content

Commit

Permalink
Merge pull request #43 from LeeKyoungIl/master
Browse files Browse the repository at this point in the history
hot fix merge
  • Loading branch information
LeeKyoungIl authored Mar 12, 2018
2 parents ab607b4 + a951327 commit 2db4c24
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion ApiServerSample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
<scope>compile</scope>
</dependency>

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ The illuminati is desinged to make collect all data easily and it can be possibl
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
</dependency>

<!-- This is an option. If you add the module, you can turn it on and off without deploying it. -->
Expand Down Expand Up @@ -113,7 +113,7 @@ repositories {
}

compile 'com.leekyoungil.illuminati:illuminati-client-annotation:1.1.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.2'
// This is an option. If you add the module, you can turn it on and off without deploying it.
compile 'com.leekyoungil.illuminati:illuminati-client-switch:1.0.4'
<!-- This is an option. If you add the module, you can collect Event data from Browser to server to response by one transaction id. -->
Expand Down Expand Up @@ -275,7 +275,7 @@ Application에서 발생하는 모든데이터를 수집하고 그중에 어떤
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
</dependency>

<!-- 이것은 옵션 입니다. 해당 모듈을 추가하면 대시 배포 없이 on, off할수 있습니다. -->
Expand Down Expand Up @@ -303,7 +303,7 @@ repositories {
}

compile 'com.leekyoungil.illuminati:illuminati-client-annotation:1.1.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.2'
//이것은 옵션 입니다. 해당 모듈을 추가하면 대시 배포 없이 on, off할수 있습니다.
compile 'com.leekyoungil.illuminati:illuminati-client-switch:1.0.4'
//이것은 옵션 입니다. 해당 모듈을 추가하면 브라우저에서 발생된 Event data까지 수집할수 있습니다.
Expand Down
8 changes: 4 additions & 4 deletions illuminati-client/illuminati-client-annotation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
</dependency>
```

Expand All @@ -29,7 +29,7 @@

```java
compile 'com.leekyoungil.illuminati:illuminati-client-annotation:1.1.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.2'
```

## add @Illuminati to Class
Expand Down Expand Up @@ -121,7 +121,7 @@ public class ApiSampleController {
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
</dependency>
```

Expand All @@ -130,7 +130,7 @@ public class ApiSampleController {

```java
compile 'com.leekyoungil.illuminati:illuminati-client-annotation:1.1.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.2'
```


Expand Down
2 changes: 1 addition & 1 deletion illuminati-client/illuminati-client-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-common</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<packaging>jar</packaging>

<properties>
Expand Down
12 changes: 6 additions & 6 deletions illuminati-client/illuminati-client-processor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* RabbitMQ - completed test of heavy traffic
* Kafka - not yet complete

## I recommend the RabbitMQ for the current version.(0.9.9.1)
## I recommend the RabbitMQ for the current version.(0.9.9.2)

## add to Maven Dependency
* Maven
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
</dependency>

<!-- This is an option. If you add the module, you can turn it on and off without deploying it. -->
Expand All @@ -50,7 +50,7 @@ repositories {
}

compile 'com.leekyoungil.illuminati:illuminati-client-annotation:1.1.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.2'
// This is an option. If you add the module, you can turn it on and off without deploying it.
compile 'com.leekyoungil.illuminati:illuminati-client-switch:1.0.4'
```
Expand Down Expand Up @@ -174,7 +174,7 @@ chaosBomber: true
* rabbitmq - 대용량 트래픽 테스트 완료
* kafka - 테스트 중

## 현 버전 (0.9.9.1) 에서는 rabbitmq를 권장 합니다.
## 현 버전 (0.9.9.2) 에서는 rabbitmq를 권장 합니다.

## Maven Dependency 추가
* Maven
Expand All @@ -197,7 +197,7 @@ chaosBomber: true
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
</dependency>

<!-- 이것은 옵션 입니다. 해당 모듈을 추가하면 대시 배포 없이 on, off할수 있습니다. -->
Expand All @@ -219,7 +219,7 @@ repositories {

compile 'com.leekyoungil.illuminati:illuminati-client-annotation:1.1.1'
//이것은 옵션 입니다. 해당 모듈을 추가하면 대시 배포 없이 on, off할수 있습니다.
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.1'
compile 'com.leekyoungil.illuminati:illuminati-client-processor:0.9.9.2'
```

## Class에 @Illuminati 추가
Expand Down
4 changes: 2 additions & 2 deletions illuminati-client/illuminati-client-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-processor</artifactId>
<version>0.9.9.1</version>
<version>0.9.9.2</version>
<packaging>jar</packaging>

<properties>
Expand Down Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>com.leekyoungil.illuminati</groupId>
<artifactId>illuminati-client-common</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<scope>compile</scope>
</dependency>

Expand Down

0 comments on commit 2db4c24

Please sign in to comment.