Skip to content

Commit 44df44f

Browse files
author
bamboo
committed
[maven-release-plugin] prepare release 0.5.1
1 parent 7170ea7 commit 44df44f

3 files changed

Lines changed: 62 additions & 67 deletions

File tree

AndroidPlot-Core/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@
1515
~ limitations under the License.
1616
-->
1717

18-
<project xmlns="http://maven.apache.org/POM/4.0.0"
19-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18+
<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">
2119
<modelVersion>4.0.0</modelVersion>
2220
<parent>
2321
<groupId>com.androidplot</groupId>
2422
<artifactId>androidplot</artifactId>
25-
<version>0.5.1-SNAPSHOT</version>
23+
<version>0.5.1</version>
2624
</parent>
2725
<artifactId>androidplot-core</artifactId>
2826
<!--<version>${applicationVersion}</version>-->

Examples/DemoApp/pom.xml

Lines changed: 56 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,57 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<parent>
7-
<groupId>com.androidplot</groupId>
8-
<artifactId>androidplot</artifactId>
9-
<version>0.5.1-SNAPSHOT</version>
10-
<relativePath>../../pom.xml</relativePath>
11-
</parent>
12-
13-
<groupId>com.androidplot</groupId>
14-
<artifactId>androidplot-demoapp</artifactId>
15-
<packaging>apk</packaging>
16-
<name>AndroidPlot-DemoApp</name>
17-
<!--<version>1.0-SNAPSHOT</version>-->
18-
19-
<dependencies>
20-
<dependency>
21-
<groupId>com.google.android</groupId>
22-
<artifactId>android</artifactId>
23-
<version>4.0.1.2</version>
24-
<scope>provided</scope>
25-
</dependency>
26-
<dependency>
27-
<groupId>com.androidplot</groupId>
28-
<artifactId>androidplot-core</artifactId>
29-
<version>0.5.1-SNAPSHOT</version>
30-
<scope>compile</scope>
31-
</dependency>
32-
</dependencies>
33-
<build>
34-
<finalName>${project.artifactId}</finalName>
35-
<sourceDirectory>src</sourceDirectory>
36-
<pluginManagement>
37-
<plugins>
38-
<plugin>
39-
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
40-
<artifactId>android-maven-plugin</artifactId>
41-
<version>3.3.0</version>
42-
<extensions>true</extensions>
43-
</plugin>
44-
</plugins>
45-
</pluginManagement>
46-
<plugins>
47-
<plugin>
48-
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
49-
<artifactId>android-maven-plugin</artifactId>
50-
<configuration>
51-
<sdk>
52-
<!-- platform or api level (api level 4 = platform 1.6)-->
53-
<platform>16</platform>
54-
</sdk>
55-
</configuration>
56-
</plugin>
57-
</plugins>
58-
</build>
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+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>com.androidplot</groupId>
6+
<artifactId>androidplot</artifactId>
7+
<version>0.5.1</version>
8+
<relativePath>../../pom.xml</relativePath>
9+
</parent>
10+
11+
<groupId>com.androidplot</groupId>
12+
<artifactId>androidplot-demoapp</artifactId>
13+
<packaging>apk</packaging>
14+
<name>AndroidPlot-DemoApp</name>
15+
<!--<version>1.0-SNAPSHOT</version>-->
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>com.google.android</groupId>
20+
<artifactId>android</artifactId>
21+
<version>4.0.1.2</version>
22+
<scope>provided</scope>
23+
</dependency>
24+
<dependency>
25+
<groupId>com.androidplot</groupId>
26+
<artifactId>androidplot-core</artifactId>
27+
<version>0.5.1</version>
28+
<scope>compile</scope>
29+
</dependency>
30+
</dependencies>
31+
<build>
32+
<finalName>${project.artifactId}</finalName>
33+
<sourceDirectory>src</sourceDirectory>
34+
<pluginManagement>
35+
<plugins>
36+
<plugin>
37+
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
38+
<artifactId>android-maven-plugin</artifactId>
39+
<version>3.3.0</version>
40+
<extensions>true</extensions>
41+
</plugin>
42+
</plugins>
43+
</pluginManagement>
44+
<plugins>
45+
<plugin>
46+
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
47+
<artifactId>android-maven-plugin</artifactId>
48+
<configuration>
49+
<sdk>
50+
<!-- platform or api level (api level 4 = platform 1.6)-->
51+
<platform>16</platform>
52+
</sdk>
53+
</configuration>
54+
</plugin>
55+
</plugins>
56+
</build>
5957
</project>

pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
~ limitations under the License.
1616
-->
1717

18-
<project xmlns="http://maven.apache.org/POM/4.0.0"
19-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18+
<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">
2119
<modelVersion>4.0.0</modelVersion>
2220
<parent>
2321
<groupId>org.sonatype.oss</groupId>
@@ -27,7 +25,7 @@
2725

2826
<groupId>com.androidplot</groupId>
2927
<artifactId>androidplot</artifactId>
30-
<version>0.5.1-SNAPSHOT</version>
28+
<version>0.5.1</version>
3129
<name>AndroidPlot-Parent</name>
3230
<description>A charting library for the Android platform</description>
3331
<url>http://androidplot.com</url>
@@ -93,7 +91,8 @@
9391
<connection>scm:git:https://bitbucket.org/androidplot/androidplot.git</connection>
9492
<developerConnection>scm:git:https://bitbucket.org/androidplot/androidplot.git</developerConnection>
9593
<url>https://bitbucket.org/androidplot/androidplot.git</url>
96-
</scm>
94+
<tag>0.5.1</tag>
95+
</scm>
9796

9897
<build>
9998
<plugins>

0 commit comments

Comments
 (0)