254 lines
8.4 KiB
XML
254 lines
8.4 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>calculatorpp-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.3.2</version>
|
|
<name>Calculator++</name>
|
|
|
|
<modules>
|
|
<module>calculatorpp</module>
|
|
<module>calculatorpp-service</module>
|
|
<module>calculatorpp-test</module>
|
|
<module>calculatorpp-core</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev</groupId>
|
|
<artifactId>common-core</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev</groupId>
|
|
<artifactId>common-text</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>android-common-core</artifactId>
|
|
<type>apklib</type>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>android-common-ads</artifactId>
|
|
<type>apklib</type>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>android-common-view</artifactId>
|
|
<type>apklib</type>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>android-common-preferences</artifactId>
|
|
<type>apklib</type>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>android-common-menu</artifactId>
|
|
<type>apklib</type>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev</groupId>
|
|
<artifactId>jscl</artifactId>
|
|
<version>0.0.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<groupId>xerces</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev.android</groupId>
|
|
<artifactId>android-common-other</artifactId>
|
|
<type>apklib</type>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intellij</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>7.0.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>android</artifactId>
|
|
<version>4.0.1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>android-test</artifactId>
|
|
<version>2.3.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>11.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.simpleframework</groupId>
|
|
<artifactId>simple-xml</artifactId>
|
|
<version>2.6.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>stax-api</artifactId>
|
|
<groupId>stax</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>xpp3</artifactId>
|
|
<groupId>xpp3</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>com.electriccloud</groupId>
|
|
<artifactId>javac2-maven-plugin</artifactId>
|
|
<version>1.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>@NotNull Instrumentation</id>
|
|
<goals>
|
|
<goal>instrument</goal>
|
|
</goals>
|
|
<!--compile phase instead of process-classes because of proguard.
|
|
@NotNull instrumentation will be done now after compilation and before proguard-->
|
|
<phase>compile</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
|
<version>1.2</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
<artifactId>android-maven-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<configuration>
|
|
|
|
<sourceDirectories>
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
|
</sourceDirectories>
|
|
|
|
<sdk>
|
|
<platform>15</platform>
|
|
</sdk>
|
|
|
|
<emulator>
|
|
<avd>23</avd>
|
|
<wait>10000</wait>
|
|
<!--<options>-no-skin</options>-->
|
|
</emulator>
|
|
|
|
<zipalign>
|
|
<verbose>true</verbose>
|
|
</zipalign>
|
|
|
|
<undeployBeforeDeploy>true</undeployBeforeDeploy>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.pyx4me</groupId>
|
|
<artifactId>proguard-maven-plugin</artifactId>
|
|
<version>2.0.4</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.5</version>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<extensions>
|
|
<extension>
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
<artifactId>android-maven-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
</extension>
|
|
</extensions>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
<!-- the standard profile runs instrumentation tests -->
|
|
<id>standard</id>
|
|
</profile>
|
|
|
|
<profile>
|
|
<!-- the release profile does sign, proguard, zipalign -->
|
|
<id>release</id>
|
|
<!-- via this activation the profile is automatically used when the release is done with the maven release
|
|
plugin -->
|
|
<activation>
|
|
<property>
|
|
<name>performRelease</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
|
|
</profile>
|
|
</profiles>
|
|
|
|
|
|
</project> |