epokmedia / storm-local-multilang

The easiest way to test and develop your multilang spouts and bolts for the Storm distributed realtime computation system.
MIT License
22 stars 1 forks source link

Doesn't build #1

Open munimkazia opened 11 years ago

munimkazia commented 11 years ago
[ERROR] Failed to execute goal on project storm-local-multilang: Could not resolve dependencies for project com.epokmedia:storm-local-multilang:jar:1.0: Could not find artifact org.twitter4j:twitter4j-stream:jar:2.2.5-SNAPSHOT in twitter4j (http://twitter4j.org/maven2) -> [Help 1]

I am also just wondering you guys are still maintaining this project, since the last commit was over a year ago.

DarkSmith commented 11 years ago

Hi, We don't have time to maintain it right now. Your error is weird since twitter4j is not really a dependency or if it is declared as such it's a mistake on our end.

ojingo commented 11 years ago

same:

Downloading: http://twitter4j.org/maven2/org/twitter4j/twitter4j-core/2.2.5-SNAPSHOT/twitter4j-core-2.2.5-SNAPSHOT.jar Downloading: http://twitter4j.org/maven2/org/twitter4j/twitter4j-stream/2.2.5-SNAPSHOT/twitter4j-stream-2.2.5-SNAPSHOT.jar Downloaded: http://twitter4j.org/maven2/org/twitter4j/twitter4j-core/2.2.5-SNAPSHOT/twitter4j-core-2.2.5-SNAPSHOT.jar (306 KB at 186.4 KB/sec) [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 15.342s [INFO] Finished at: Fri Sep 06 12:02:04 MSK 2013 [INFO] Final Memory: 4M/81M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project storm-local-multilang: Could not resolve dependencies for project com.epokmedia:storm-local-multilang:jar:1.0: Could not find artifact org.twitter4j:twitter4j-stream:jar:2.2.5-SNAPSHOT in twitter4j (http://twitter4j.org/maven2) -> [Help 1]

ojingo commented 11 years ago

you need to remove -SNAPSHOT from your dependencies... ( fixed by my friend Sergey after he studied the problem )

ghafran commented 10 years ago

Make sure you run

$  sudo apt-get install openjdk-6-jdk maven 

before trying to build.

Then open pom.xml and remove the following lines:

        <dependency>
            <groupId>org.twitter4j</groupId>
            <artifactId>twitter4j-stream</artifactId>
            <version>2.2.5-SNAPSHOT</version>
        </dependency>

Quick fix :)