Skip to content

Commit 8dcece5

Browse files
committed
[maven-release-plugin] prepare release v1.1.1
1 parent 2cf65e3 commit 8dcece5

File tree

1 file changed

+152
-0
lines changed

1 file changed

+152
-0
lines changed

pom.xml

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<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">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>cn.trinea.android.view.autoscrollviewpager</groupId>
6+
<artifactId>android-auto-scroll-view-pager</artifactId>
7+
<packaging>jar</packaging>
8+
9+
<name>Android Auto Scroll ViewPager</name>
10+
<version>1.1.1</version>
11+
<url>https://github.com/Trinea/android-auto-scroll-view-pager</url>
12+
<description>Android Auto Scroll ViewPager</description>
13+
<inceptionYear>2014</inceptionYear>
14+
15+
<parent>
16+
<groupId>org.sonatype.oss</groupId>
17+
<artifactId>oss-parent</artifactId>
18+
<version>7</version>
19+
</parent>
20+
21+
<licenses>
22+
<license>
23+
<name>The Apache Software License, Version 2.0</name>
24+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
25+
<distribution>repo</distribution>
26+
</license>
27+
</licenses>
28+
<scm>
29+
<connection>scm:git:git://github.com/Trinea/android-auto-scroll-view-pager.git</connection>
30+
<developerConnection>scm:git:[email protected]:Trinea/android-auto-scroll-view-pager.git</developerConnection>
31+
<url>https://github.com/Trinea/android-auto-scroll-view-pager</url>
32+
<tag>v1.1.1</tag>
33+
</scm>
34+
35+
<developers>
36+
<developer>
37+
<id>trinea</id>
38+
<name>Trinea</name>
39+
<email>[email protected]</email>
40+
</developer>
41+
</developers>
42+
43+
<issueManagement>
44+
<system>GitHub Issues</system>
45+
<url>https://github.com/Trinea/android-auto-scroll-view-pager/issues</url>
46+
</issueManagement>
47+
48+
<properties>
49+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
51+
</properties>
52+
53+
<dependencies>
54+
<!--Android deps -->
55+
<dependency>
56+
<groupId>com.google.android</groupId>
57+
<artifactId>android</artifactId>
58+
<version>4.0.1.2</version>
59+
<scope>provided</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.google.android</groupId>
63+
<artifactId>support-v4</artifactId>
64+
<version>r6</version>
65+
</dependency>
66+
</dependencies>
67+
68+
<build>
69+
<sourceDirectory>src</sourceDirectory>
70+
<testSourceDirectory>test</testSourceDirectory>
71+
72+
<plugins>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-compiler-plugin</artifactId>
76+
<version>3.0</version>
77+
<configuration>
78+
<source>1.6</source>
79+
<target>1.6</target>
80+
</configuration>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-release-plugin</artifactId>
85+
<version>2.4</version>
86+
<configuration>
87+
<tagNameFormat>v@{project.version}</tagNameFormat>
88+
</configuration>
89+
</plugin>
90+
<plugin>
91+
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
92+
<artifactId>android-maven-plugin</artifactId>
93+
<version>3.8.0</version>
94+
<configuration>
95+
<sdk>
96+
<platform>14</platform>
97+
</sdk>
98+
<undeployBeforeDeploy>true</undeployBeforeDeploy>
99+
</configuration>
100+
<extensions>true</extensions>
101+
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-eclipse-plugin</artifactId>
105+
<version>2.9</version>
106+
<configuration>
107+
<excludes>
108+
<exclude>com.google.android:android</exclude>
109+
</excludes>
110+
<buildOutputDirectory>bin</buildOutputDirectory>
111+
<classpathContainers>
112+
<classpathContainer>com.android.ide.eclipse.adt.ANDROID_FRAMEWORK</classpathContainer>
113+
</classpathContainers>
114+
<additionalProjectnatures>
115+
<projectnature>com.android.ide.eclipse.adt.AndroidNature</projectnature>
116+
</additionalProjectnatures>
117+
<additionalBuildcommands>
118+
<buildcommand>com.android.ide.eclipse.adt.ResourceManagerBuilder</buildcommand>
119+
<buildcommand>com.android.ide.eclipse.adt.PreCompilerBuilder</buildcommand>
120+
<buildcommand>com.android.ide.eclipse.adt.ApkBuilder</buildcommand>
121+
</additionalBuildcommands>
122+
</configuration>
123+
</plugin>
124+
<plugin>
125+
<groupId>org.apache.maven.plugins</groupId>
126+
<artifactId>maven-source-plugin</artifactId>
127+
<version>2.2.1</version>
128+
<executions>
129+
<execution>
130+
<id>attach-sources</id>
131+
<goals>
132+
<goal>jar</goal>
133+
</goals>
134+
</execution>
135+
</executions>
136+
</plugin>
137+
<plugin>
138+
<groupId>org.apache.maven.plugins</groupId>
139+
<artifactId>maven-javadoc-plugin</artifactId>
140+
<version>2.9</version>
141+
<executions>
142+
<execution>
143+
<id>attach-javadocs</id>
144+
<goals>
145+
<goal>jar</goal>
146+
</goals>
147+
</execution>
148+
</executions>
149+
</plugin>
150+
</plugins>
151+
</build>
152+
</project>

0 commit comments

Comments
 (0)