We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 7b66adbCopy full SHA for 7b66adb
.gitignore
@@ -0,0 +1,18 @@
1
+# mark gradle
2
+.gradle/
3
+build/
4
+
5
+# mark java/groovy
6
+*.class
7
8
+# mark eclipse
9
+.project
10
+.metadata
11
+.classpath
12
+.settings/
13
+bin/**
14
15
+# mark idea
16
+*.ipr
17
+*.iml
18
+*.iws
build.gradle
@@ -0,0 +1,17 @@
+allprojects {
+ repositories {
+ mavenCentral()
+ }
+}
+subprojects {
+ apply plugin: 'java'
+ apply plugin: 'eclipse'
+ group = "com.offline.training"
+project(':homework') {
+ dependencies {
+ testCompile 'junit:junit:4.11'
settings.gradle
@@ -0,0 +1,2 @@
+rootProject.name='offline-training'
+include 'homework'
0 commit comments