Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:novoda/public-mvn-repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam committed Jan 22, 2013
2 parents ede5634 + 7786349 commit 1795987
Show file tree
Hide file tree
Showing 21 changed files with 410 additions and 17 deletions.
4 changes: 2 additions & 2 deletions poms/android/pom.xml
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>com.novoda</groupId>
<artifactId>team</artifactId>
<version>1.4</version>
<version>1.5</version>
</parent>
<groupId>com.novoda</groupId>
<artifactId>android</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<name>android</name>
<packaging>pom</packaging>

Expand Down
4 changes: 2 additions & 2 deletions poms/reporting/pom.xml
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.novoda</groupId>
<artifactId>android</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
</parent>

<groupId>com.novoda</groupId>
<artifactId>reporting</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<name>reporting</name>
<packaging>pom</packaging>

Expand Down
8 changes: 7 additions & 1 deletion poms/team/pom.xml
Expand Up @@ -4,11 +4,17 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.novoda</groupId>
<artifactId>team</artifactId>
<version>1.4</version>
<version>1.5</version>
<name>team</name>
<description>team</description>
<packaging>pom</packaging>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<properties>
<scm.branch>master</scm.branch>
<junit.version>4.8.2</junit.version>
Expand Down
188 changes: 188 additions & 0 deletions releases/com/novoda/android/2.0.5/android-2.0.5.pom
@@ -0,0 +1,188 @@
<?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>
<parent>
<groupId>com.novoda</groupId>
<artifactId>team</artifactId>
<version>1.5</version>
</parent>
<groupId>com.novoda</groupId>
<artifactId>android</artifactId>
<version>2.0.5</version>
<name>android</name>
<packaging>pom</packaging>

<properties>
<android.version>2.2</android.version>
<android.sdk.platform>8</android.sdk.platform>
<android.maven.plugin.version>3.5.0</android.maven.plugin.version>
</properties>

<build>
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android.maven.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android.maven.plugin.version}</version>
<configuration>
<sdk>
<platform>${android.sdk.platform}</platform>
</sdk>
<deleteConflictingFiles>true</deleteConflictingFiles>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
<enableIntegrationTest>true</enableIntegrationTest>
<extractDuplicates>true</extractDuplicates>
<manifest>
<!--
Is already the default version
<versionName>${project.version}</versionName>
-->
<debuggable>true</debuggable>
<versionCodeAutoIncrement>true</versionCodeAutoIncrement>
</manifest>
</configuration>
<extensions>true</extensions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>eclipse</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>initialize</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>libs</outputDirectory>
<excludeArtifactIds>${eclipse.excludeArtifactIds}</excludeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>libs</directory>
<includes>
<include>*.jar</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
<executions>
<execution>
<id>signing</id>
<goals>
<goal>sign</goal>
</goals>
<phase>package</phase>
<inherited>true</inherited>
<configuration>
<archiveDirectory></archiveDirectory>
<includes>
<include>target/*.apk</include>
</includes>
<keystore>${sign.keystore}</keystore>
<storepass>${sign.storepass}</storepass>
<keypass>${sign.keypass}</keypass>
<alias>${sign.alias}</alias>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android.maven.plugin.version}</version>
<configuration>
<sign>
<debug>false</debug>
</sign>
<manifest>
<debuggable>false</debuggable>
</manifest>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>zipalign</id>
<goals>
<goal>exec</goal>
</goals>
<phase>install</phase>
<configuration>
<executable>${ANDROID_HOME}/tools/zipalign</executable>
<arguments>
<argument>-f</argument>
<argument>4</argument>
<argument>target/${project.build.finalName}.apk</argument>
<argument>target/${project.build.finalName}-zipped.apk</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
1 change: 1 addition & 0 deletions releases/com/novoda/android/2.0.5/android-2.0.5.pom.md5
@@ -0,0 +1 @@
cdc1843bd4fbfa10624e6970856a44f8
1 change: 1 addition & 0 deletions releases/com/novoda/android/2.0.5/android-2.0.5.pom.sha1
@@ -0,0 +1 @@
f53895963065ea4c20548f8d5f945d6b7c4a70b8
5 changes: 3 additions & 2 deletions releases/com/novoda/android/maven-metadata.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>com.novoda</groupId>
<artifactId>android</artifactId>
<versioning>
<release>2.0.4</release>
<release>2.0.5</release>
<versions>
<version>0.1.1</version>
<version>0.1.2</version>
Expand All @@ -18,7 +18,8 @@
<version>2.0.2</version>
<version>2.0.3</version>
<version>2.0.4</version>
<version>2.0.5</version>
</versions>
<lastUpdated>20121220113524</lastUpdated>
<lastUpdated>20130122100903</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion releases/com/novoda/android/maven-metadata.xml.md5
@@ -1 +1 @@
e39f39dc208d4d82469767ee94956ce6
4938abeb1063d4c6b9d8e03005bd7cd1
2 changes: 1 addition & 1 deletion releases/com/novoda/android/maven-metadata.xml.sha1
@@ -1 +1 @@
24a0f761280d6bd72643baff739492226598be59
c6693913960910395c979de6d12ed583d1f047e6
116 changes: 116 additions & 0 deletions releases/com/novoda/reporting/1.2.1/reporting-1.2.1.pom
@@ -0,0 +1,116 @@
<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>
<parent>
<groupId>com.novoda</groupId>
<artifactId>android</artifactId>
<version>2.0.5</version>
</parent>

<groupId>com.novoda</groupId>
<artifactId>reporting</artifactId>
<version>1.2.1</version>
<name>reporting</name>
<packaging>pom</packaging>

<properties>
<reporting.package.analyze>com.novoda.*</reporting.package.analyze>
<reporting.findbugs.exclude>team-props/findbugs-exclude.xml</reporting.findbugs.exclude>
<reporting.checkstyle.rules>team-props/checkstyle.xml</reporting.checkstyle.rules>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<formats>
<format>xml</format>
</formats>
<check/>
</configuration>
<executions>
<execution>
<phase>clean</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<includes>
<include>**/*Test*.java</include>
<include>**/*Should.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<configLocation>${reporting.checkstyle.rules}</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<xmlOutput>true</xmlOutput>
<onlyAnalyze>${reporting.package.analyze}</onlyAnalyze>
<excludeFilterFile>${reporting.findbugs.exclude}</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
</plugin>
</plugins>
</reporting>
</project>
@@ -0,0 +1 @@
447f23f49c65f138d6a9e0e0419d514f
@@ -0,0 +1 @@
4d1f41beef18384c2450d08d8bff8196abbec1b9

0 comments on commit 1795987

Please sign in to comment.