Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiesardo committed Mar 2, 2014
1 parent 11bfbe5 commit a2b3a4d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ Gradle:

```
dependencies {
compile 'com.github.frankiesardo:icepick:2.3.4'
provided 'com.github.frankiesardo:icepick-processor:2.3.4'
compile 'com.github.frankiesardo:icepick:2.3.5'
provided 'com.github.frankiesardo:icepick-processor:2.3.5'
}
```

Expand All @@ -75,20 +75,20 @@ Maven:
<dependency>
<groupId>com.github.frankiesardo</groupId>
<artifactId>icepick</artifactId>
<version>2.3.4</version>
<version>2.3.5</version>
</dependency>
<dependency>
<groupId>com.github.frankiesardo</groupId>
<artifactId>icepick-processor</artifactId>
<version>2.3.4</version>
<version>2.3.5</version>
<optional>true</optional>
</dependency>
</dependencies>
```

Jar:

This is the [library](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick/2.3.4/icepick-2.3.4.jar) and here is the [processor](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick-processor/2.3.4/icepick-processor-2.3.4.jar).
This is the [library](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick/2.3.5/icepick-2.3.5.jar) and here is the [processor](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick-processor/2.3.5/icepick-processor-2.3.5.jar).

License
-------
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ subprojects {
mavenLocal()
}

project.group = 'com.gihub.frankiesardo'
project.group = 'com.github.frankiesardo'
}


Expand Down
2 changes: 1 addition & 1 deletion icepick-processor/deploy.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven'
apply plugin: 'signing'

version = "2.3.4"
version = "2.3.5"

def isReleaseBuild() {
!version.contains("SNAPSHOT")
Expand Down
2 changes: 1 addition & 1 deletion icepick/deploy.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven'
apply plugin: 'signing'

version = "2.3.4"
version = "2.3.5"

def isReleaseBuild() {
!version.contains("SNAPSHOT")
Expand Down

0 comments on commit a2b3a4d

Please sign in to comment.