Skip to content

Commit 7b66adb

Browse files
author
bjrara
committed
init commits
0 parents  commit 7b66adb

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -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

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
allprojects {
2+
repositories {
3+
mavenCentral()
4+
}
5+
}
6+
7+
subprojects {
8+
apply plugin: 'java'
9+
apply plugin: 'eclipse'
10+
group = "com.offline.training"
11+
}
12+
13+
project(':homework') {
14+
dependencies {
15+
testCompile 'junit:junit:4.11'
16+
}
17+
}

settings.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name='offline-training'
2+
include 'homework'

0 commit comments

Comments
 (0)