| Apache Droids > Index > installation > droids-core |
In the core we only have (and want) a minimum of dependencies to make it easy to integrate and extend droids.
<dependencies>
<dependency>
<groupId>org.apache.droids</groupId>
<artifactId>droids-norobots</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>nekohtml</groupId>
<artifactId>nekohtml</artifactId>
</dependency>
<!-- TEST -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>