| 1 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 |
<modelVersion>4.0.0</modelVersion> |
| 4 |
<groupId>chambrebasse</groupId> |
| 5 |
<artifactId>chambrebasse</artifactId> |
| 6 |
<version>0.0.1-SNAPSHOT</version> |
| 7 |
<repositories> |
| 8 |
<repository> |
| 9 |
<id>tinkerpop-repository</id> |
| 10 |
<name>TinkerPop Maven2 Repository</name> |
| 11 |
<url>http://tinkerpop.com/maven2</url> |
| 12 |
</repository> |
| 13 |
<repository> |
| 14 |
<id>neo4j-public-repository</id> |
| 15 |
<name>Publicly available Maven 2 repository for Neo4j</name> |
| 16 |
<url>http://m2.neo4j.org/</url> |
| 17 |
<snapshots> |
| 18 |
<enabled>true</enabled> |
| 19 |
<updatePolicy>always</updatePolicy> |
| 20 |
</snapshots> |
| 21 |
</repository> |
| 22 |
<repository> |
| 23 |
<id>eaio.com</id> |
| 24 |
<url>http://eaio.com/maven2</url> |
| 25 |
</repository> |
| 26 |
<repository> |
| 27 |
<id>java-twitter-repository</id> |
| 28 |
<url>http://maven.twttr.com/</url> |
| 29 |
<name>Twitter maven repository</name> |
| 30 |
</repository> |
| 31 |
</repositories> |
| 32 |
<build> |
| 33 |
<plugins> |
| 34 |
<plugin> |
| 35 |
<groupId>org.apache.maven.plugins</groupId> |
| 36 |
<artifactId>maven-dependency-plugin</artifactId> |
| 37 |
<executions> |
| 38 |
<execution> |
| 39 |
<id>build-classpath</id> |
| 40 |
<phase>generate-sources</phase> |
| 41 |
<goals> |
| 42 |
<goal>build-classpath</goal> |
| 43 |
</goals> |
| 44 |
<configuration> |
| 45 |
<outputFile>maven-classpath.txt</outputFile> |
| 46 |
</configuration> |
| 47 |
</execution> |
| 48 |
</executions> |
| 49 |
</plugin> |
| 50 |
</plugins> |
| 51 |
<pluginManagement> |
| 52 |
<plugins> |
| 53 |
<!--This plugin's configuration is used to store Eclipse m2e settings |
| 54 |
only. It has no influence on the Maven build itself. --> |
| 55 |
<plugin> |
| 56 |
<groupId>org.eclipse.m2e</groupId> |
| 57 |
<artifactId>lifecycle-mapping</artifactId> |
| 58 |
<version>1.0.0</version> |
| 59 |
<configuration> |
| 60 |
<lifecycleMappingMetadata> |
| 61 |
<pluginExecutions> |
| 62 |
<pluginExecution> |
| 63 |
<pluginExecutionFilter> |
| 64 |
<groupId> |
| 65 |
org.apache.maven.plugins |
| 66 |
</groupId> |
| 67 |
<artifactId> |
| 68 |
maven-dependency-plugin |
| 69 |
</artifactId> |
| 70 |
<versionRange>[2.1,)</versionRange> |
| 71 |
<goals> |
| 72 |
<goal>build-classpath</goal> |
| 73 |
</goals> |
| 74 |
</pluginExecutionFilter> |
| 75 |
<action> |
| 76 |
<ignore></ignore> |
| 77 |
</action> |
| 78 |
</pluginExecution> |
| 79 |
</pluginExecutions> |
| 80 |
</lifecycleMappingMetadata> |
| 81 |
</configuration> |
| 82 |
</plugin> |
| 83 |
</plugins> |
| 84 |
</pluginManagement> |
| 85 |
</build> |
| 86 |
<dependencies> |
| 87 |
<dependency> |
| 88 |
<groupId>com.tinkerpop</groupId> |
| 89 |
<artifactId>rexster</artifactId> |
| 90 |
<version>0.7</version> |
| 91 |
</dependency> |
| 92 |
<dependency> |
| 93 |
<groupId>org.neo4j</groupId> |
| 94 |
<artifactId>neo4j-backup</artifactId> |
| 95 |
<version>1.5</version> |
| 96 |
</dependency> |
| 97 |
<dependency> |
| 98 |
<groupId>org.neo4j.app</groupId> |
| 99 |
<artifactId>neo4j-server</artifactId> |
| 100 |
<version>1.5</version> |
| 101 |
</dependency> |
| 102 |
<dependency> |
| 103 |
<groupId>org.neo4j</groupId> |
| 104 |
<artifactId>neo4j-ha</artifactId> |
| 105 |
<version>1.5</version> |
| 106 |
</dependency> |
| 107 |
<dependency> |
| 108 |
<groupId>org.neo4j</groupId> |
| 109 |
<artifactId>neo4j-management</artifactId> |
| 110 |
<version>1.5</version> |
| 111 |
</dependency> |
| 112 |
<dependency> |
| 113 |
<groupId>org.neo4j</groupId> |
| 114 |
<artifactId>neo4j-jmx</artifactId> |
| 115 |
<version>1.5</version> |
| 116 |
</dependency> |
| 117 |
<dependency> |
| 118 |
<groupId>com.tinkerpop.blueprints</groupId> |
| 119 |
<artifactId>blueprints-core</artifactId> |
| 120 |
<version>1.1</version> |
| 121 |
</dependency> |
| 122 |
<dependency> |
| 123 |
<groupId>com.tinkerpop.blueprints</groupId> |
| 124 |
<artifactId>blueprints-neo4j-graph</artifactId> |
| 125 |
<version>1.1</version> |
| 126 |
</dependency> |
| 127 |
<dependency> |
| 128 |
<groupId>com.tinkerpop.blueprints</groupId> |
| 129 |
<artifactId>blueprints-neo4jbatch-graph</artifactId> |
| 130 |
<version>1.1</version> |
| 131 |
</dependency> |
| 132 |
<dependency> |
| 133 |
<groupId>com.tinkerpop.blueprints</groupId> |
| 134 |
<artifactId>blueprints-orient-graph</artifactId> |
| 135 |
<version>1.1</version> |
| 136 |
</dependency> |
| 137 |
<dependency> |
| 138 |
<groupId>com.tinkerpop.gremlin</groupId> |
| 139 |
<artifactId>gremlin-java</artifactId> |
| 140 |
<version>1.4</version> |
| 141 |
</dependency> |
| 142 |
<dependency> |
| 143 |
<groupId>commons-httpclient</groupId> |
| 144 |
<artifactId>commons-httpclient</artifactId> |
| 145 |
<version>3.1</version> |
| 146 |
</dependency> |
| 147 |
<dependency> |
| 148 |
<groupId>commons-io</groupId> |
| 149 |
<artifactId>commons-io</artifactId> |
| 150 |
<version>2.0.1</version> |
| 151 |
</dependency> |
| 152 |
<dependency> |
| 153 |
<groupId>com.google.protobuf</groupId> |
| 154 |
<artifactId>protobuf-java</artifactId> |
| 155 |
<version>2.4.1</version> |
| 156 |
</dependency> |
| 157 |
<dependency> |
| 158 |
<groupId>commons-lang</groupId> |
| 159 |
<artifactId>commons-lang</artifactId> |
| 160 |
<version>2.5</version> |
| 161 |
</dependency> |
| 162 |
<dependency> |
| 163 |
<groupId>net.sf.json-lib</groupId> |
| 164 |
<artifactId>json-lib</artifactId> |
| 165 |
<version>2.2.3</version> |
| 166 |
<classifier>jdk15</classifier> |
| 167 |
</dependency> |
| 168 |
<dependency> |
| 169 |
<groupId>joda-time</groupId> |
| 170 |
<artifactId>joda-time</artifactId> |
| 171 |
<version>1.6.2</version> |
| 172 |
</dependency> |
| 173 |
<dependency> |
| 174 |
<groupId>junit</groupId> |
| 175 |
<artifactId>junit</artifactId> |
| 176 |
<version>4.9</version> |
| 177 |
<scope>test</scope> |
| 178 |
</dependency> |
| 179 |
<dependency> |
| 180 |
<groupId>org.easymock</groupId> |
| 181 |
<artifactId>easymock</artifactId> |
| 182 |
<version>2.4</version> |
| 183 |
<scope>test</scope> |
| 184 |
</dependency> |
| 185 |
<dependency> |
| 186 |
<groupId>com.google.collections</groupId> |
| 187 |
<artifactId>google-collections</artifactId> |
| 188 |
<version>1.0-rc2</version> |
| 189 |
</dependency> |
| 190 |
<dependency> |
| 191 |
<groupId>net.sf.jung</groupId> |
| 192 |
<artifactId>jung2</artifactId> |
| 193 |
<version>2.0.1</version> |
| 194 |
<type>pom</type> |
| 195 |
<scope>compile</scope> |
| 196 |
</dependency> |
| 197 |
<dependency> |
| 198 |
<groupId>net.sf.jung</groupId> |
| 199 |
<artifactId>jung-visualization</artifactId> |
| 200 |
<version>2.0.1</version> |
| 201 |
<type>jar</type> |
| 202 |
<scope>compile</scope> |
| 203 |
</dependency> |
| 204 |
<dependency> |
| 205 |
<groupId>net.sf.jung</groupId> |
| 206 |
<artifactId>jung-jai</artifactId> |
| 207 |
<version>2.0.1</version> |
| 208 |
<type>jar</type> |
| 209 |
<scope>compile</scope> |
| 210 |
</dependency> |
| 211 |
<dependency> |
| 212 |
<groupId>net.sf.jung</groupId> |
| 213 |
<artifactId>jung-io</artifactId> |
| 214 |
<version>2.0.1</version> |
| 215 |
<type>jar</type> |
| 216 |
<scope>compile</scope> |
| 217 |
</dependency> |
| 218 |
<dependency> |
| 219 |
<groupId>net.sf.jung</groupId> |
| 220 |
<artifactId>jung-graph-impl</artifactId> |
| 221 |
<version>2.0.1</version> |
| 222 |
<type>jar</type> |
| 223 |
<scope>compile</scope> |
| 224 |
</dependency> |
| 225 |
<dependency> |
| 226 |
<groupId>net.sf.jung</groupId> |
| 227 |
<artifactId>jung-api</artifactId> |
| 228 |
<version>2.0.1</version> |
| 229 |
<type>jar</type> |
| 230 |
<scope>compile</scope> |
| 231 |
</dependency> |
| 232 |
<dependency> |
| 233 |
<groupId>net.sf.jung</groupId> |
| 234 |
<artifactId>jung-algorithms</artifactId> |
| 235 |
<version>2.0.1</version> |
| 236 |
<type>jar</type> |
| 237 |
<scope>compile</scope> |
| 238 |
</dependency> |
| 239 |
<dependency> |
| 240 |
<groupId>net.sf.jung</groupId> |
| 241 |
<artifactId>jung-3d</artifactId> |
| 242 |
<version>2.0.1</version> |
| 243 |
<type>jar</type> |
| 244 |
<scope>compile</scope> |
| 245 |
</dependency> |
| 246 |
<dependency> |
| 247 |
<groupId>com.google.code.gson</groupId> |
| 248 |
<artifactId>gson</artifactId> |
| 249 |
<version>2.0</version> |
| 250 |
</dependency> |
| 251 |
<dependency> |
| 252 |
<groupId>org.apache.httpcomponents</groupId> |
| 253 |
<artifactId>httpclient</artifactId> |
| 254 |
<version>4.1.2</version> |
| 255 |
</dependency> |
| 256 |
<dependency> |
| 257 |
<groupId>org.twitter4j</groupId> |
| 258 |
<artifactId>twitter4j-core</artifactId> |
| 259 |
<version>2.2.4</version> |
| 260 |
</dependency> |
| 261 |
<dependency> |
| 262 |
<groupId>org.apache.solr</groupId> |
| 263 |
<artifactId>solr-solrj</artifactId> |
| 264 |
<version>3.4.0</version> |
| 265 |
</dependency> |
| 266 |
<dependency> |
| 267 |
<groupId>com.google.guava</groupId> |
| 268 |
<artifactId>guava</artifactId> |
| 269 |
<version>10.0</version> |
| 270 |
</dependency> |
| 271 |
<dependency> |
| 272 |
<groupId>org.apache.thrift</groupId> |
| 273 |
<artifactId>libthrift</artifactId> |
| 274 |
<version>0.6.1</version> |
| 275 |
</dependency> |
| 276 |
<dependency> |
| 277 |
<groupId>mx.bigdata.jcalais</groupId> |
| 278 |
<artifactId>j-calais</artifactId> |
| 279 |
<version>0.3</version> |
| 280 |
</dependency> |
| 281 |
<dependency> |
| 282 |
<groupId>com.twitter</groupId> |
| 283 |
<artifactId>twitter-text-java</artifactId> |
| 284 |
<version>1.1.8</version> |
| 285 |
</dependency> |
| 286 |
<dependency> |
| 287 |
<groupId>org.jsoup</groupId> |
| 288 |
<artifactId>jsoup</artifactId> |
| 289 |
<version>1.6.1</version> |
| 290 |
</dependency> |
| 291 |
<dependency> |
| 292 |
<groupId>com.eaio.uuid</groupId> |
| 293 |
<artifactId>uuid</artifactId> |
| 294 |
<version>3.2</version> |
| 295 |
</dependency> |
| 296 |
</dependencies> |
| 297 |
</project> |