Skip to content

Commit

Permalink
new version 0.3.2 using new twitter4j 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurnn committed Jan 29, 2012
1 parent 526ffed commit 1cb6eae
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Twitter4jGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Twitter4jGrailsPlugin {

Logger log = Logger.getLogger(getClass())

def version = "0.3.1"
def version = "0.3.2"
def grailsVersion = "1.3 > *"

def author = "Soeren Berg Glasius, Arthur Neves"
Expand Down
5 changes: 4 additions & 1 deletion dependencies.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ grails.project.dependency.resolution = {
}

dependencies {
runtime group:"org.twitter4j", name:"twitter4j-core", version:"2.1.11"
//runtime group:"org.twitter4j", name:"twitter4j-core", version:"2.1.11"
runtime group:"org.twitter4j", name:"twitter4j-core", version:"2.2.5"
runtime group:"org.twitter4j", name:"twitter4j-async", version:"2.2.5"
runtime group:"org.twitter4j", name:"twitter4j-stream", version:"2.2.5"
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

// runtime 'mysql:mysql-connector-java:5.1.13'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package org.twitter4j.grails.plugin

import twitter4j.Twitter
import org.codehaus.groovy.grails.commons.ConfigurationHolder
import twitter4j.http.RequestToken
import twitter4j.auth.RequestToken
import twitter4j.TwitterFactory
import twitter4j.http.AccessToken
import twitter4j.auth.AccessToken
import twitter4j.TwitterException
import javax.servlet.http.HttpServletResponse

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.codehaus.groovy.grails.commons.ConfigurationHolder
import twitter4j.Twitter
import twitter4j.TwitterFactory
import twitter4j.conf.ConfigurationBuilder
import twitter4j.http.AccessToken
import twitter4j.auth.AccessToken

class Twitter4jService {

Expand Down
Binary file added grails-twitter4j-0.3.2.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<plugin name='twitter4j' version='0.3.1' grailsVersion='1.3 &gt; *'>
<plugin name='twitter4j' version='0.3.2' grailsVersion='1.3 &gt; *'>
<author>Soeren Berg Glasius, Arthur Neves</author>
<authorEmail>soeren@glasius.dk, arthurnn@gmail.com</authorEmail>
<title>Twitter4j for Grails</title>
Expand Down

0 comments on commit 1cb6eae

Please sign in to comment.