Testcase generation tool for combinatorial interaction testing
Revisión | cdeab918d53bb00aee8f0dd25ba877753f39f3a1 (tree) |
---|---|
Tiempo | 2018-09-22 00:56:15 |
Autor | tallman <tallman189@gmai...> |
Commiter | tallman |
- add pom.xml
- change folder format to maven layout
- remove ignore file and folders
@@ -1,11 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<classpath> | |
3 | - <classpathentry kind="src" path="src"/> | |
4 | - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"> | |
5 | - <attributes> | |
6 | - <attribute name="module" value="true"/> | |
7 | - </attributes> | |
8 | - </classpathentry> | |
9 | - <classpathentry kind="lib" path="lib/jdd_104.jar"/> | |
10 | - <classpathentry kind="output" path="bin"/> | |
11 | -</classpath> |
@@ -1 +1,5 @@ | ||
1 | -/bin | |
1 | +/.settings/ | |
2 | +/target/ | |
3 | +.classpath | |
4 | +.project | |
5 | +/bin/ |
@@ -1,17 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<projectDescription> | |
3 | - <name>cit_bach</name> | |
4 | - <comment></comment> | |
5 | - <projects> | |
6 | - </projects> | |
7 | - <buildSpec> | |
8 | - <buildCommand> | |
9 | - <name>org.eclipse.jdt.core.javabuilder</name> | |
10 | - <arguments> | |
11 | - </arguments> | |
12 | - </buildCommand> | |
13 | - </buildSpec> | |
14 | - <natures> | |
15 | - <nature>org.eclipse.jdt.core.javanature</nature> | |
16 | - </natures> | |
17 | -</projectDescription> |
@@ -1,12 +0,0 @@ | ||
1 | -eclipse.preferences.version=1 | |
2 | -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | |
3 | -org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate | |
4 | -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 | |
5 | -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | |
6 | -org.eclipse.jdt.core.compiler.compliance=1.6 | |
7 | -org.eclipse.jdt.core.compiler.debug.lineNumber=generate | |
8 | -org.eclipse.jdt.core.compiler.debug.localVariable=generate | |
9 | -org.eclipse.jdt.core.compiler.debug.sourceFile=generate | |
10 | -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | |
11 | -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | |
12 | -org.eclipse.jdt.core.compiler.source=1.6 |
@@ -0,0 +1,50 @@ | ||
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/xsd/maven-4.0.0.xsd"> | |
3 | + <modelVersion>4.0.0</modelVersion> | |
4 | + <groupId>cit_bach</groupId> | |
5 | + <artifactId>cit_bach</artifactId> | |
6 | + <version>1.10</version> | |
7 | + <name>CIT-BACH</name> | |
8 | + <description>Combinatorial Interaction Testing tool with a BDD-Assisted Constraint Handler</description> | |
9 | + <build> | |
10 | + <pluginManagement> | |
11 | + <plugins> | |
12 | + <plugin> | |
13 | + <groupId>org.apache.maven.plugins</groupId> | |
14 | + <artifactId>maven-compiler-plugin</artifactId> | |
15 | + <version>3.8.0</version> | |
16 | + </plugin> | |
17 | + </plugins> | |
18 | + </pluginManagement> | |
19 | + <plugins> | |
20 | + <plugin> | |
21 | + <groupId>org.apache.maven.plugins</groupId> | |
22 | + <artifactId>maven-compiler-plugin</artifactId> | |
23 | + <configuration> | |
24 | + <source>${java.version}</source> | |
25 | + <target>${java.version}</target> | |
26 | + </configuration> | |
27 | + </plugin> | |
28 | + </plugins> | |
29 | + </build> | |
30 | + <dependencies> | |
31 | +<!-- | |
32 | + <dependency> | |
33 | + <groupId>org.bitbucket.vahidi</groupId> | |
34 | + <artifactId>jdd</artifactId> | |
35 | + <version>108</version> | |
36 | + </dependency> | |
37 | + --> | |
38 | + <dependency> | |
39 | + <groupId>org.bitbucket.vahidi</groupId> | |
40 | + <artifactId>jdd</artifactId> | |
41 | + <version>104</version> | |
42 | + <scope>system</scope> | |
43 | + <systemPath>${basedir}/lib/jdd_104.jar</systemPath> | |
44 | + </dependency> | |
45 | + </dependencies> | |
46 | + <properties> | |
47 | + <java.version>1.6</java.version> | |
48 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
49 | + </properties> | |
50 | +</project> | |
\ No newline at end of file |