Skip to content

Commit

Permalink
Backtracking improvements and output format conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachezar Kozhuharov committed Jan 14, 2012
1 parent de054f1 commit e25bfe4
Show file tree
Hide file tree
Showing 5 changed files with 363 additions and 87 deletions.
67 changes: 36 additions & 31 deletions cross-world.crossword-generator/pom.xml
Original file line number Diff line number Diff line change
@@ -1,37 +1,42 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<artifactId>cross-world.crossword-generator</artifactId>
<packaging>jar</packaging>
<artifactId>cross-world.crossword-generator</artifactId>
<packaging>jar</packaging>

<name>cross-world.crossword-generator</name>
<name>cross-world.crossword-generator</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>team-rocket</groupId>
<artifactId>cross-world.commons</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.7.2</version>
</dependency>
</dependencies>
<parent>
<groupId>team-rocket</groupId>
<artifactId>cross-world.parent</artifactId>
<version>1.0.0</version>
</parent>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>team-rocket</groupId>
<artifactId>cross-world.commons</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.7.2</version>
</dependency>
</dependencies>
<parent>
<groupId>team-rocket</groupId>
<artifactId>cross-world.parent</artifactId>
<version>1.0.0</version>
</parent>
</project>
Loading

0 comments on commit e25bfe4

Please sign in to comment.