problems with md resolved
This commit is contained in:
@@ -1,2 +1,13 @@
|
|||||||
|
arguments=
|
||||||
|
auto.sync=false
|
||||||
|
build.scans.enabled=false
|
||||||
|
connection.gradle.distribution=GRADLE_DISTRIBUTION(LOCAL_INSTALLATION(c\:\\Gradle))
|
||||||
connection.project.dir=
|
connection.project.dir=
|
||||||
eclipse.preferences.version=1
|
eclipse.preferences.version=1
|
||||||
|
gradle.user.home=
|
||||||
|
java.home=C\:/Program Files/Java/jdk1.8.0_131
|
||||||
|
jvm.arguments=
|
||||||
|
offline.mode=false
|
||||||
|
override.workspace.settings=true
|
||||||
|
show.console.view=true
|
||||||
|
show.executions.view=true
|
||||||
|
|||||||
18
classlevel/lambdaexpressions/collections/.classpath
Normal file
18
classlevel/lambdaexpressions/collections/.classpath
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" output="bin/main" path="src/main/java">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="gradle_scope" value="main"/>
|
||||||
|
<attribute name="gradle_used_by_scope" value="main,test"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="src" output="bin/test" path="src/test/java">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="gradle_scope" value="test"/>
|
||||||
|
<attribute name="gradle_used_by_scope" value="test"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
|
||||||
|
<classpathentry kind="output" path="bin/default"/>
|
||||||
|
</classpath>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
arguments=
|
||||||
|
auto.sync=false
|
||||||
|
build.scans.enabled=false
|
||||||
|
connection.gradle.distribution=GRADLE_DISTRIBUTION(LOCAL_INSTALLATION(c\:\\Gradle))
|
||||||
|
connection.project.dir=
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
gradle.user.home=
|
||||||
|
java.home=C\:/Program Files/Java/jdk1.8.0_131
|
||||||
|
jvm.arguments=
|
||||||
|
offline.mode=false
|
||||||
|
override.workspace.settings=true
|
||||||
|
show.console.view=true
|
||||||
|
show.executions.view=true
|
||||||
@@ -1,13 +1,2 @@
|
|||||||
arguments=
|
|
||||||
auto.sync=false
|
|
||||||
build.scans.enabled=false
|
|
||||||
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
|
|
||||||
connection.project.dir=
|
connection.project.dir=
|
||||||
eclipse.preferences.version=1
|
eclipse.preferences.version=1
|
||||||
gradle.user.home=c\:/Gradle
|
|
||||||
java.home=
|
|
||||||
jvm.arguments=
|
|
||||||
offline.mode=false
|
|
||||||
override.workspace.settings=true
|
|
||||||
show.console.view=true
|
|
||||||
show.executions.view=true
|
|
||||||
|
|||||||
14
playground/tmp/build.gradle.kts
Normal file
14
playground/tmp/build.gradle.kts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
plugins {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClassName = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
version = "1.0.0"
|
||||||
2
test/.settings/org.eclipse.buildship.core.prefs
Normal file
2
test/.settings/org.eclipse.buildship.core.prefs
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
connection.project.dir=
|
||||||
|
eclipse.preferences.version=1
|
||||||
@@ -8,7 +8,7 @@ import static org.junit.Assert.*;
|
|||||||
|
|
||||||
public class LibraryTest {
|
public class LibraryTest {
|
||||||
@Test public void testSomeLibraryMethod() {
|
@Test public void testSomeLibraryMethod() {
|
||||||
Library classUnderTest = new Library();
|
final Library classUnderTest = new Library();
|
||||||
assertTrue("someLibraryMethod should return 'true'", classUnderTest.someLibraryMethod());
|
assertTrue("someLibraryMethod should return 'true'", classUnderTest.someLibraryMethod());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
# About this kata
|
# About this kata
|
||||||
|
|
||||||
Simple handwritten Gradle Java project written in Kotlin.
|
Simple handwritten Gradle Java project written in Kotlin.
|
||||||
|
|
||||||
# Problem description
|
## Problem description
|
||||||
|
|
||||||
Provide a gradle project for HelloGradleKotlin class. The gradle project should support compliation and application execution.
|
Provide a gradle project for HelloGradleKotlin class. The gradle project should support compliation and application execution.
|
||||||
|
|
||||||
|
## Clues
|
||||||
# Clues
|
|
||||||
|
|
||||||
Java and application gradle plugins shall be used
|
Java and application gradle plugins shall be used
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user