From 131fdc8516c402e118df6257fc269afbcd5d832c Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Wed, 30 Nov 2022 15:50:28 +0100 Subject: Initial commit --- .gitignore | 3 +++ build.gradle | 44 +++++++++++++++++++++++++++++++++++ pom.xml | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 122 insertions(+) create mode 100644 .gitignore create mode 100644 build.gradle create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a1ba30 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +build/ +target/ +*.class \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..05b7ec1 --- /dev/null +++ b/build.gradle @@ -0,0 +1,44 @@ +plugins { + id 'com.android.library' +} + +android { + namespace 'it.alessandroiezzi.commons.page' + compileSdkVersion 29 + + defaultConfig { + minSdkVersion 24 + targetSdkVersion 29 + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles "consumer-rules.pro" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + snapshot { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + local { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'com.google.android.material:material:1.3.0' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.4' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' +} \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0512c44 --- /dev/null +++ b/pom.xml @@ -0,0 +1,75 @@ + + + + 4.0.0 + + it.alessandroiezzi + commons-page + 0.0.0 + + commons-page + + http://www.example.com + + + UTF-8 + 1.8 + 1.8 + + + + + junit + junit + 4.11 + test + + + + + + + + + maven-clean-plugin + 3.1.0 + + + + maven-resources-plugin + 3.0.2 + + + maven-compiler-plugin + 3.8.0 + + + maven-surefire-plugin + 2.22.1 + + + maven-jar-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + + maven-site-plugin + 3.7.1 + + + maven-project-info-reports-plugin + 3.0.0 + + + + + -- cgit v1.2.3