bump product version to 4.1.6.2
[LibreOffice.git] / android / abs-lib / pom.xml
blob5373fb0127a0041faf71a87530b0856ea0b0c979
1 <?xml version="1.0" encoding="UTF-8"?>
3 <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">
4         <modelVersion>4.0.0</modelVersion>
6         <groupId>com.actionbarsherlock</groupId>
7         <artifactId>library</artifactId>
8         <name>ActionBarSherlock</name>
9         <packaging>apklib</packaging>
11         <parent>
12                 <groupId>com.actionbarsherlock</groupId>
13                 <artifactId>parent</artifactId>
14                 <version>4.1.0</version>
15                 <relativePath>../pom.xml</relativePath>
16         </parent>
18         <dependencies>
19                 <dependency>
20                         <groupId>com.google.android</groupId>
21                         <artifactId>android</artifactId>
22                         <scope>provided</scope>
23                 </dependency>
24                 <dependency>
25                         <groupId>com.google.android</groupId>
26                         <artifactId>support-v4</artifactId>
27                 </dependency>
29                 <dependency>
30                         <groupId>com.pivotallabs</groupId>
31                         <artifactId>robolectric</artifactId>
32                         <scope>test</scope>
33                 </dependency>
34                 <dependency>
35                         <groupId>junit</groupId>
36                         <artifactId>junit</artifactId>
37                         <scope>test</scope>
38                 </dependency>
39         </dependencies>
41         <build>
42                 <sourceDirectory>src</sourceDirectory>
43                 <testSourceDirectory>test</testSourceDirectory>
45                 <plugins>
46                         <plugin>
47                                 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
48                                 <artifactId>android-maven-plugin</artifactId>
49                                 <extensions>true</extensions>
50                         </plugin>
52                         <plugin>
53                                 <groupId>org.apache.maven.plugins</groupId>
54                                 <artifactId>maven-javadoc-plugin</artifactId>
55                                 <configuration>
56                                         <skip>true</skip>
57                                 </configuration>
58                         </plugin>
60                         <plugin>
61                                 <groupId>com.google.code.maven-replacer-plugin</groupId>
62                                 <artifactId>maven-replacer-plugin</artifactId>
63                                 <version>1.4.0</version>
64                                 <executions>
65                                         <execution>
66                                                 <phase>process-sources</phase>
67                                                 <goals>
68                                                         <goal>replace</goal>
69                                                 </goals>
70                                         </execution>
71                                 </executions>
72                                 <configuration>
73                                         <ignoreMissingFile>false</ignoreMissingFile>
74                                         <file>target/generated-sources/r/com/actionbarsherlock/R.java</file>
75                                         <outputFile>target/generated-sources/r/com/actionbarsherlock/R.java</outputFile>
76                                         <regex>false</regex>
77                                         <token>static final int</token>
78                                         <value>static int</value>
79                                 </configuration>
80                         </plugin>
82                         <plugin>
83                                 <groupId>org.apache.maven.plugins</groupId>
84                                 <artifactId>maven-checkstyle-plugin</artifactId>
85                                 <configuration>
86                                         <configLocation>../checkstyle.xml</configLocation>
87                                 </configuration>
88                                 <executions>
89                                         <execution>
90                                                 <phase>verify</phase>
91                                                 <goals>
92                                                         <goal>checkstyle</goal>
93                                                 </goals>
94                                         </execution>
95                                 </executions>
96                         </plugin>
98                         <plugin>
99                                 <groupId>org.codehaus.mojo</groupId>
100                                 <artifactId>build-helper-maven-plugin</artifactId>
101                                 <version>1.7</version>
102                                 <executions>
103                                         <execution>
104                                                 <phase>package</phase>
105                                                 <goals>
106                                                         <goal>attach-artifact</goal>
107                                                 </goals>
108                                                 <configuration>
109                                                         <artifacts>
110                                                                 <artifact>
111                                                                         <type>jar</type>
112                                                                         <file>${project.build.directory}/${project.build.finalName}.jar</file>
113                                                                 </artifact>
114                                                         </artifacts>
115                                                 </configuration>
116                                         </execution>
117                                 </executions>
118                         </plugin>
119                 </plugins>
121                 <pluginManagement>
122                         <plugins>
123                                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
124                                 <plugin>
125                                         <groupId>org.eclipse.m2e</groupId>
126                                         <artifactId>lifecycle-mapping</artifactId>
127                                         <version>1.0.0</version>
128                                         <configuration>
129                                                 <lifecycleMappingMetadata>
130                                                         <pluginExecutions>
131                                                                 <pluginExecution>
132                                                                         <pluginExecutionFilter>
133                                                                                 <groupId>com.google.code.maven-replacer-plugin</groupId>
134                                                                                 <artifactId>maven-replacer-plugin</artifactId>
135                                                                                 <versionRange>[1.4.1,)</versionRange>
136                                                                                 <goals>
137                                                                                         <goal>replace</goal>
138                                                                                 </goals>
139                                                                         </pluginExecutionFilter>
140                                                                         <action>
141                                                                                 <ignore />
142                                                                         </action>
143                                                                 </pluginExecution>
144                                                         </pluginExecutions>
145                                                 </lifecycleMappingMetadata>
146                                         </configuration>
147                                 </plugin>
148                         </plugins>
149                 </pluginManagement>
150         </build>
151 </project>