Skip to content
This repository was archived by the owner on Dec 30, 2024. It is now read-only.

Commit 6a366dc

Browse files
committed
Initial source move
Change-Id: I5fa4cf33d70e16203dfee0666470fc96559f9662
1 parent f46c32f commit 6a366dc

File tree

9 files changed

+950
-0
lines changed

9 files changed

+950
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.idea/
2+
.gradle/
3+
4+
build/
5+
6+
*.class
7+
*.war
8+
*.ear
9+
*.aar
10+
*.iml

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
allprojects {
2+
repositories {
3+
mavenCentral()
4+
mavenLocal()
5+
}
6+
}
7+
8+
task clean(type: Delete) {
9+
delete rootProject.buildDir
10+
}

database/build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
group 'com.google.firebase.example'
2+
version '1.0'
3+
4+
apply plugin: 'java'
5+
apply plugin: 'application'
6+
7+
mainClassName = 'com.google.firebase.example.Main'
8+
9+
sourceCompatibility = 1.8
10+
11+
repositories {
12+
mavenCentral()
13+
mavenLocal()
14+
}
15+
16+
dependencies {
17+
// Firebase Java SDK
18+
compile 'com.google.firebase:firebase-admin:5.1.0'
19+
}

0 commit comments

Comments
 (0)