Skip to content

Commit

Permalink
Promote new version
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiesardo committed Jun 19, 2014
1 parent d392dbf commit fea8dc8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 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.5'
provided 'com.github.frankiesardo:icepick-processor:2.3.5'
compile 'com.github.frankiesardo:icepick:2.3.6'
provided 'com.github.frankiesardo:icepick-processor:2.3.6'
}
```

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

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). Note that if you use include the jars without using a dependency management tool you'll also need to include Guava in your path. More details [here](https://github.com/frankiesardo/icepick/issues/17)
This is the [library](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick/2.3.6/icepick-2.3.6.jar) and here is the [processor](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick-processor/2.3.6/icepick-processor-2.3.6.jar). Note that if you use include the jars without using a dependency management tool you'll also need to include Guava in your path. More details [here](https://github.com/frankiesardo/icepick/issues/17)

License
-------
Expand Down
6 changes: 3 additions & 3 deletions 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.5"
version = "2.3.6"

def isReleaseBuild() {
!version.contains("SNAPSHOT")
Expand All @@ -17,8 +17,8 @@ if (isReleaseBuild()) {
sonatypeRepositoryUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
}

def username = project.hasProperty("nexusUsername") ? project.property("nexusUsername") : ""
def password = project.hasProperty("nexusPassword") ? project.property("nexusPassword") : ""
def username = project.getProperty("nexusUsername") ?: ""
def password = project.getProperty("nexusPassword") ?: ""

afterEvaluate { project ->
uploadArchives {
Expand Down
6 changes: 3 additions & 3 deletions 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.5"
version = "2.3.6"

def isReleaseBuild() {
!version.contains("SNAPSHOT")
Expand All @@ -17,8 +17,8 @@ if (isReleaseBuild()) {
sonatypeRepositoryUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
}

def username = project.hasProperty("nexusUsername") ? project.property("nexusUsername") : ""
def password = project.hasProperty("nexusPassword") ? project.property("nexusPassword") : ""
def username = project.getProperty("nexusUsername") ?: ""
def password = project.getProperty("nexusPassword") ?: ""

afterEvaluate { project ->
uploadArchives {
Expand Down

0 comments on commit fea8dc8

Please sign in to comment.