Skip to content
This repository was archived by the owner on Apr 19, 2018. It is now read-only.

Commit fc1285f

Browse files
committed
[maven-release-plugin] prepare release 3.0.0
1 parent a1f381f commit fc1285f

File tree

5 files changed

+200
-200
lines changed

5 files changed

+200
-200
lines changed

library/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.actionbarsherlock</groupId>
1313
<artifactId>parent</artifactId>
14-
<version>3.0.0-SNAPSHOT</version>
14+
<version>3.0.0</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.actionbarsherlock</groupId>
77
<artifactId>parent</artifactId>
88
<packaging>pom</packaging>
9-
<version>3.0.0-SNAPSHOT</version>
9+
<version>3.0.0</version>
1010

1111
<name>ActionBarSherlock (Parent)</name>
1212
<description>Android library for implementing the action bar design pattern using the native ActionBar on 3.0+ and a custom implementation on pre-3.0 all through the same API.</description>

sample-featuredemo/pom.xml

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
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>
5-
6-
<groupId>com.actionbarsherlock</groupId>
7-
<artifactId>sample-featuredemo</artifactId>
8-
<name>Sample: Feature Demo</name>
9-
<packaging>apk</packaging>
10-
11-
<parent>
12-
<groupId>com.actionbarsherlock</groupId>
13-
<artifactId>parent</artifactId>
14-
<version>3.0.0-SNAPSHOT</version>
15-
<relativePath>../pom.xml</relativePath>
16-
</parent>
17-
18-
<dependencies>
19-
<dependency>
20-
<groupId>android</groupId>
21-
<artifactId>android</artifactId>
22-
<version>${android.version}</version>
23-
<scope>provided</scope>
24-
</dependency>
25-
26-
<dependency>
27-
<groupId>com.actionbarsherlock</groupId>
28-
<artifactId>library</artifactId>
29-
<version>${project.version}</version>
30-
<type>apklib</type>
31-
</dependency>
32-
</dependencies>
33-
34-
<build>
35-
<sourceDirectory>src</sourceDirectory>
36-
</build>
37-
38-
<profiles>
39-
<profile>
40-
<id>release-sign-artifacts</id>
41-
<activation>
42-
<property>
43-
<name>performRelease</name>
44-
<value>true</value>
45-
</property>
46-
</activation>
47-
<build>
48-
<plugins>
49-
<plugin>
50-
<groupId>com.jakewharton</groupId>
51-
<artifactId>github-deploy-maven-plugin</artifactId>
52-
<version>1.0.1</version>
53-
<configuration>
54-
<types>
55-
<type>apk</type>
56-
</types>
57-
</configuration>
58-
<goals>
59-
<goal>deploy</goal>
60-
</goals>
61-
</plugin>
62-
</plugins>
63-
</build>
64-
</profile>
65-
</profiles>
66-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
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>
5+
6+
<groupId>com.actionbarsherlock</groupId>
7+
<artifactId>sample-featuredemo</artifactId>
8+
<name>Sample: Feature Demo</name>
9+
<packaging>apk</packaging>
10+
11+
<parent>
12+
<groupId>com.actionbarsherlock</groupId>
13+
<artifactId>parent</artifactId>
14+
<version>3.0.0</version>
15+
<relativePath>../pom.xml</relativePath>
16+
</parent>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>android</groupId>
21+
<artifactId>android</artifactId>
22+
<version>${android.version}</version>
23+
<scope>provided</scope>
24+
</dependency>
25+
26+
<dependency>
27+
<groupId>com.actionbarsherlock</groupId>
28+
<artifactId>library</artifactId>
29+
<version>${project.version}</version>
30+
<type>apklib</type>
31+
</dependency>
32+
</dependencies>
33+
34+
<build>
35+
<sourceDirectory>src</sourceDirectory>
36+
</build>
37+
38+
<profiles>
39+
<profile>
40+
<id>release-sign-artifacts</id>
41+
<activation>
42+
<property>
43+
<name>performRelease</name>
44+
<value>true</value>
45+
</property>
46+
</activation>
47+
<build>
48+
<plugins>
49+
<plugin>
50+
<groupId>com.jakewharton</groupId>
51+
<artifactId>github-deploy-maven-plugin</artifactId>
52+
<version>1.0.1</version>
53+
<configuration>
54+
<types>
55+
<type>apk</type>
56+
</types>
57+
</configuration>
58+
<goals>
59+
<goal>deploy</goal>
60+
</goals>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
</profile>
65+
</profiles>
66+
</project>

sample-shakespeare/pom.xml

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
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>
5-
6-
<groupId>com.actionbarsherlock</groupId>
7-
<artifactId>sample-shakespeare</artifactId>
8-
<name>Sample: Shakespeare</name>
9-
<packaging>apk</packaging>
10-
11-
<parent>
12-
<groupId>com.actionbarsherlock</groupId>
13-
<artifactId>parent</artifactId>
14-
<version>3.0.0-SNAPSHOT</version>
15-
<relativePath>../pom.xml</relativePath>
16-
</parent>
17-
18-
<dependencies>
19-
<dependency>
20-
<groupId>android</groupId>
21-
<artifactId>android</artifactId>
22-
<version>${android.version}</version>
23-
<scope>provided</scope>
24-
</dependency>
25-
26-
<dependency>
27-
<groupId>com.actionbarsherlock</groupId>
28-
<artifactId>library</artifactId>
29-
<version>${project.version}</version>
30-
<type>apklib</type>
31-
</dependency>
32-
</dependencies>
33-
34-
<build>
35-
<sourceDirectory>src</sourceDirectory>
36-
</build>
37-
38-
<profiles>
39-
<profile>
40-
<id>release-sign-artifacts</id>
41-
<activation>
42-
<property>
43-
<name>performRelease</name>
44-
<value>true</value>
45-
</property>
46-
</activation>
47-
<build>
48-
<plugins>
49-
<plugin>
50-
<groupId>com.jakewharton</groupId>
51-
<artifactId>github-deploy-maven-plugin</artifactId>
52-
<version>1.0.1</version>
53-
<configuration>
54-
<types>
55-
<type>apk</type>
56-
</types>
57-
</configuration>
58-
<goals>
59-
<goal>deploy</goal>
60-
</goals>
61-
</plugin>
62-
</plugins>
63-
</build>
64-
</profile>
65-
</profiles>
66-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
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>
5+
6+
<groupId>com.actionbarsherlock</groupId>
7+
<artifactId>sample-shakespeare</artifactId>
8+
<name>Sample: Shakespeare</name>
9+
<packaging>apk</packaging>
10+
11+
<parent>
12+
<groupId>com.actionbarsherlock</groupId>
13+
<artifactId>parent</artifactId>
14+
<version>3.0.0</version>
15+
<relativePath>../pom.xml</relativePath>
16+
</parent>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>android</groupId>
21+
<artifactId>android</artifactId>
22+
<version>${android.version}</version>
23+
<scope>provided</scope>
24+
</dependency>
25+
26+
<dependency>
27+
<groupId>com.actionbarsherlock</groupId>
28+
<artifactId>library</artifactId>
29+
<version>${project.version}</version>
30+
<type>apklib</type>
31+
</dependency>
32+
</dependencies>
33+
34+
<build>
35+
<sourceDirectory>src</sourceDirectory>
36+
</build>
37+
38+
<profiles>
39+
<profile>
40+
<id>release-sign-artifacts</id>
41+
<activation>
42+
<property>
43+
<name>performRelease</name>
44+
<value>true</value>
45+
</property>
46+
</activation>
47+
<build>
48+
<plugins>
49+
<plugin>
50+
<groupId>com.jakewharton</groupId>
51+
<artifactId>github-deploy-maven-plugin</artifactId>
52+
<version>1.0.1</version>
53+
<configuration>
54+
<types>
55+
<type>apk</type>
56+
</types>
57+
</configuration>
58+
<goals>
59+
<goal>deploy</goal>
60+
</goals>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
</profile>
65+
</profiles>
66+
</project>

0 commit comments

Comments
 (0)