This commit is contained in:
tibbi 2016-12-11 15:32:51 +01:00
parent a3180bc3bb
commit 70cedcdbc5
3 changed files with 39 additions and 1 deletions

1
.gitignore vendored
View file

@ -6,3 +6,4 @@
/build
/captures
.externalNativeBuild
/target

View file

@ -1,5 +1,5 @@
# Simple-Commons
Some helper functions, dialogs etc used by all simple apps
Some helper functions, dialogs etc used by multiple simple apps.
License
-------

37
commons-1.0.0.pom Normal file
View file

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.simplemobiletools</groupId>
<artifactId>commons</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>Commons</name>
<description>Some helper functions, dialogs etc used by multiple simple apps.</description>
<url>https://github.com/SimpleMobileTools/Simple-Commons</url>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>appcompat-v7</artifactId>
<version>25.0.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.0.3</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>