Add Gradle files

This commit is contained in:
Herbert Reiter
2020-01-02 17:03:31 +01:00
parent a6a6abc64b
commit 510a54d77b
4 changed files with 83 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# Compiled class file
*.class
# Log file
*.log
# Package Files
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# IntelliJ
.idea/
out/
moasdawiki-app.iml
# Gradle
gradlew
gradlew.bat
gradle/
.gradle/
build/
release/
# Git
local.properties
# Others
+21
View File
@@ -0,0 +1,21 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
}
}
+20
View File
@@ -0,0 +1,20 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
org.gradle.jvmargs=-Xmx3100M
+7
View File
@@ -0,0 +1,7 @@
include ':app'
sourceControl {
gitRepository("https://gitlab.com/moasdawiki/moasdawiki-server.git") {
producesModule("net.moasdawiki:moasdawiki-server")
}
}