Skip to content

Commit

Permalink
added exclude for Listener
Browse files Browse the repository at this point in the history
  • Loading branch information
avalax committed Oct 11, 2014
1 parent 4d3aa31 commit 0f7dbe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?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> <version>1.0.0-SNAPSHOT</version> <groupId>de.avalax</groupId> <artifactId>fitbuddy</artifactId> <name>fitbuddy</name> <packaging>apk</packaging> <repositories> <repository> <id>android-support</id> <url>file://${env.ANDROID_HOME}/extras/android/m2repository</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <prerequisites> <maven>3.1.1</maven> </prerequisites> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>4.1.1.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.dagger</groupId> <artifactId>dagger</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>com.squareup.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>1.2.2</version> <optional>true</optional> </dependency> <dependency> <groupId>com.jakewharton</groupId> <artifactId>butterknife</artifactId> <version>5.1.2</version> </dependency> <dependency> <groupId>org.robolectric</groupId> <artifactId>robolectric</artifactId> <version>2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.android.support</groupId> <artifactId>support-v4</artifactId> <version>19.1.0</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>android-integration</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.7</version> <scope>test</scope> </dependency> <dependency> <groupId>de.bechte.junit</groupId> <artifactId>junit-hierarchicalcontextrunner</artifactId> <version>4.11.3</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>fitbuddy-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.6.4.201312101107</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> <configuration> <includes> <include>de/avalax/fitbuddy/**</include> </includes> <excludes> <exclude>de/avalax/fitbuddy/presentation/BuildConfig.class</exclude> <exclude>de/avalax/fitbuddy/presentation/R.class</exclude> <exclude>de/avalax/fitbuddy/presentation/R$*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*InjectAdapter*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*ModuleAdapter*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*ViewInjector*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Application.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Module.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Fragment.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Activity.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*View.class</exclude> <exclude>de/avalax/fitbuddy/presentation/FixedViewPager.class</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <version>3.8.2</version> <extensions>true</extensions> <configuration> <sdk> <platform>19</platform> </sdk> <undeployBeforeDeploy>true</undeployBeforeDeploy> <proguard> <skip>false</skip> </proguard> </configuration> <executions> <execution> <id>alignApk</id> <phase>package</phase> <goals> <goal>zipalign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>2.2.0</version> </plugin> </plugins> </build> <profiles> <profile> <id>sign</id> <properties> <sign.keystore>${user.home}/.keystore</sign.keystore> <sign.alias>avalax</sign.alias> <sign.keypass>{OIIHOFgXRt0HuZSNh8nWfc9rsRKsCdMmur70irxfomU=}</sign.keypass> <sign.storepass>{0+6TCQq9DUoHMJ4Dxy+Z5QmfpbKxB+cm5hjI4BbuOQE=}</sign.storepass> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jarsigner-plugin</artifactId> <version>1.3.2</version> <executions> <execution> <id>signing</id> <goals> <goal>sign</goal> </goals> <phase>package</phase> <inherited>true</inherited> <configuration> <includes> <include>target/*.apk</include> </includes> <keystore>${sign.keystore}</keystore> <storepass>${sign.storepass}</storepass> <keypass>${sign.keypass}</keypass> <alias>${sign.alias}</alias> <arguments> <argument>-sigalg</argument><argument>MD5withRSA</argument> <argument>-digestalg</argument><argument>SHA1</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <inherited>true</inherited> <configuration> <sign> <debug>false</debug> </sign> <zipalign> <skip>false</skip> <inputApk>${project.build.directory}/fitbuddy-${project.version}.apk</inputApk> <outputApk>${project.build.directory}/fitbuddy-${project.version}-signed-aligned.apk</outputApk> </zipalign> </configuration> </plugin> </plugins> </build> </profile> </profiles></project>
<?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> <version>1.0.0-SNAPSHOT</version> <groupId>de.avalax</groupId> <artifactId>fitbuddy</artifactId> <name>fitbuddy</name> <packaging>apk</packaging> <repositories> <repository> <id>android-support</id> <url>file://${env.ANDROID_HOME}/extras/android/m2repository</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <prerequisites> <maven>3.1.1</maven> </prerequisites> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>4.1.1.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.dagger</groupId> <artifactId>dagger</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>com.squareup.dagger</groupId> <artifactId>dagger-compiler</artifactId> <version>1.2.2</version> <optional>true</optional> </dependency> <dependency> <groupId>com.jakewharton</groupId> <artifactId>butterknife</artifactId> <version>5.1.2</version> </dependency> <dependency> <groupId>org.robolectric</groupId> <artifactId>robolectric</artifactId> <version>2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.android.support</groupId> <artifactId>support-v4</artifactId> <version>19.1.0</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>android-integration</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.7</version> <scope>test</scope> </dependency> <dependency> <groupId>de.bechte.junit</groupId> <artifactId>junit-hierarchicalcontextrunner</artifactId> <version>4.11.3</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>fitbuddy-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.6.4.201312101107</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> <configuration> <includes> <include>de/avalax/fitbuddy/**</include> </includes> <excludes> <exclude>de/avalax/fitbuddy/presentation/BuildConfig.class</exclude> <exclude>de/avalax/fitbuddy/presentation/R.class</exclude> <exclude>de/avalax/fitbuddy/presentation/R$*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*InjectAdapter*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*ModuleAdapter*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*ViewInjector*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Application*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Module.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Fragment*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Activity*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*View.class</exclude> <exclude>de/avalax/fitbuddy/presentation/**/*Listener*.class</exclude> <exclude>de/avalax/fitbuddy/presentation/FixedViewPager.class</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <version>3.8.2</version> <extensions>true</extensions> <configuration> <sdk> <platform>19</platform> </sdk> <undeployBeforeDeploy>true</undeployBeforeDeploy> <proguard> <skip>false</skip> </proguard> </configuration> <executions> <execution> <id>alignApk</id> <phase>package</phase> <goals> <goal>zipalign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>2.2.0</version> </plugin> </plugins> </build> <profiles> <profile> <id>sign</id> <properties> <sign.keystore>${user.home}/.keystore</sign.keystore> <sign.alias>avalax</sign.alias> <sign.keypass>{OIIHOFgXRt0HuZSNh8nWfc9rsRKsCdMmur70irxfomU=}</sign.keypass> <sign.storepass>{0+6TCQq9DUoHMJ4Dxy+Z5QmfpbKxB+cm5hjI4BbuOQE=}</sign.storepass> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jarsigner-plugin</artifactId> <version>1.3.2</version> <executions> <execution> <id>signing</id> <goals> <goal>sign</goal> </goals> <phase>package</phase> <inherited>true</inherited> <configuration> <includes> <include>target/*.apk</include> </includes> <keystore>${sign.keystore}</keystore> <storepass>${sign.storepass}</storepass> <keypass>${sign.keypass}</keypass> <alias>${sign.alias}</alias> <arguments> <argument>-sigalg</argument><argument>MD5withRSA</argument> <argument>-digestalg</argument><argument>SHA1</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <inherited>true</inherited> <configuration> <sign> <debug>false</debug> </sign> <zipalign> <skip>false</skip> <inputApk>${project.build.directory}/fitbuddy-${project.version}.apk</inputApk> <outputApk>${project.build.directory}/fitbuddy-${project.version}-signed-aligned.apk</outputApk> </zipalign> </configuration> </plugin> </plugins> </build> </profile> </profiles></project>
Expand Down

0 comments on commit 0f7dbe6

Please sign in to comment.