Skip to content

Commit

Permalink
Merge pull request #13 from zeoflow/buildsrc-folder
Browse files Browse the repository at this point in the history
Created `buildSrc` folder
  • Loading branch information
teogor authored Apr 21, 2021
2 parents 62339a0 + a647b20 commit 663e2f3
Show file tree
Hide file tree
Showing 11 changed files with 357 additions and 149 deletions.
88 changes: 79 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,81 @@
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
/.idea
# Built application files
*.apk
*.aar
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
anidero/anidero.gpg

# Idea Folder
.idea/*
# Include dictionary
!.idea/dictionaries
# Include code-style
!.idea/codeStyles

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
*.jks
*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
134 changes: 134 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/dictionaries/default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions anidero/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,4 @@ dependencies {

}

apply from: "${rootProject.projectDir}/anidero/maven-push.gradle"
repositories {
mavenCentral()
}
apply from: "${rootProject.projectDir}/buildSrc/upload.gradle"
29 changes: 3 additions & 26 deletions anidero/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,26 +1,3 @@
POM_NAME=Anidero
POM_ARTIFACT_ID=anidero
POM_PACKAGING=aar

VERSION_NAME=1.0.2
VERSION_CODE=3
GROUP=com.zeoflow

POM_DESCRIPTION=An Android Library that renders After Effects animations in JSON format
POM_URL=https://github.com/zeoflow/anidero
POM_SCM_URL=https://github.com/zeoflow/anidero
POM_SCM_CONNECTION=scm:git@github.com:zeoflow/anidero.git
POM_SCM_DEV_CONNECTION=scm:git@github.com:zeoflow/anidero.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=zeoflow
POM_DEVELOPER_NAME=ZeoFlow

org.gradle.daemon=true

NEXUS_USERNAME=
NEXUS_PASSWORD=
signing.keyId=
signing.password=
signing.secretKeyRingFile=
# artifact id
# com.zeoflow:anidero
POM_ARTIFACT_ID=anidero
105 changes: 0 additions & 105 deletions anidero/maven-push.gradle

This file was deleted.

5 changes: 5 additions & 0 deletions buildSrc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SIGNING KEYS
*.gpg

# Key Credentials
gradle.properties
Loading

0 comments on commit 663e2f3

Please sign in to comment.