Skip to content

Commit fea8dc8

Browse files
committed
Promote new version
1 parent d392dbf commit fea8dc8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Gradle:
6363

6464
```
6565
dependencies {
66-
compile 'com.github.frankiesardo:icepick:2.3.5'
67-
provided 'com.github.frankiesardo:icepick-processor:2.3.5'
66+
compile 'com.github.frankiesardo:icepick:2.3.6'
67+
provided 'com.github.frankiesardo:icepick-processor:2.3.6'
6868
}
6969
```
7070

@@ -75,20 +75,20 @@ Maven:
7575
<dependency>
7676
<groupId>com.github.frankiesardo</groupId>
7777
<artifactId>icepick</artifactId>
78-
<version>2.3.5</version>
78+
<version>2.3.6</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>com.github.frankiesardo</groupId>
8282
<artifactId>icepick-processor</artifactId>
83-
<version>2.3.5</version>
83+
<version>2.3.6</version>
8484
<optional>true</optional>
8585
</dependency>
8686
</dependencies>
8787
```
8888

8989
Jar:
9090

91-
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)
91+
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)
9292

9393
License
9494
-------

icepick-processor/deploy.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'maven'
22
apply plugin: 'signing'
33

4-
version = "2.3.5"
4+
version = "2.3.6"
55

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

20-
def username = project.hasProperty("nexusUsername") ? project.property("nexusUsername") : ""
21-
def password = project.hasProperty("nexusPassword") ? project.property("nexusPassword") : ""
20+
def username = project.getProperty("nexusUsername") ?: ""
21+
def password = project.getProperty("nexusPassword") ?: ""
2222

2323
afterEvaluate { project ->
2424
uploadArchives {

icepick/deploy.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'maven'
22
apply plugin: 'signing'
33

4-
version = "2.3.5"
4+
version = "2.3.6"
55

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

20-
def username = project.hasProperty("nexusUsername") ? project.property("nexusUsername") : ""
21-
def password = project.hasProperty("nexusPassword") ? project.property("nexusPassword") : ""
20+
def username = project.getProperty("nexusUsername") ?: ""
21+
def password = project.getProperty("nexusPassword") ?: ""
2222

2323
afterEvaluate { project ->
2424
uploadArchives {

0 commit comments

Comments
 (0)