Skip to content

Commit

Permalink
Correct project group generation
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiesardo committed Mar 2, 2014
1 parent 4344ff4 commit 11bfbe5
Show file tree
Hide file tree
Showing 4 changed files with 11 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.3'
provided 'com.github.frankiesardo:icepick-processor:2.3.3'
compile 'com.github.frankiesardo:icepick:2.3.4'
provided 'com.github.frankiesardo:icepick-processor:2.3.4'
}
```

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

Jar:

This is the [library](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick/2.3.3/icepick-2.3.3.jar) and here is the [processor](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick-processor/2.3.3/icepick-processor-2.3.3.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).

License
-------
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ subprojects {
}

repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
mavenCentral()
mavenLocal()
}

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


task wrapper(type: Wrapper) {
gradleVersion = '1.10'
}
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.3"
version = "2.3.4"

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.3"
version = "2.3.4"

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

0 comments on commit 11bfbe5

Please sign in to comment.