Gather data
This commit is contained in:
13
src/main/generated-sources/puzzle/Config.java
Normal file
13
src/main/generated-sources/puzzle/Config.java
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
package puzzle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generated constants from pom.xml during build via templating-maven-plugin.
|
||||||
|
*/
|
||||||
|
public final class Config {
|
||||||
|
public static final int CLUE_SIZE = 4;
|
||||||
|
public static final int MIN_LEN = 2;
|
||||||
|
public static final int MAX_TRIES_PER_SLOT = 2000;
|
||||||
|
public static final int MAX_LEN = 8;
|
||||||
|
public static final int PUZZLE_ROWS = 8;
|
||||||
|
public static final int PUZZLE_COLS = 9;
|
||||||
|
}
|
||||||
13
src/main/java-templates/puzzle/Config.java
Normal file
13
src/main/java-templates/puzzle/Config.java
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
package puzzle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generated constants from pom.xml during build via templating-maven-plugin.
|
||||||
|
*/
|
||||||
|
public final class Config {
|
||||||
|
public static final int CLUE_SIZE = ${CLUE_SIZE};
|
||||||
|
public static final int MIN_LEN = ${MIN_LEN};
|
||||||
|
public static final int MAX_TRIES_PER_SLOT = ${MAX_TRIES_PER_SLOT};
|
||||||
|
public static final int MAX_LEN = ${MAX_LEN};
|
||||||
|
public static final int PUZZLE_ROWS = ${PUZZLE_ROWS};
|
||||||
|
public static final int PUZZLE_COLS = ${PUZZLE_COLS};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user