Skip to content

Commit 8fcb905

Browse files
committed
Updated POM after release 1.41, to 1.40.1-SNAPSHOT
1 parent 7571618 commit 8fcb905

File tree

3 files changed

+213
-1
lines changed

3 files changed

+213
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>mapcode</artifactId>
99

1010
<packaging>jar</packaging>
11-
<version>1.41</version>
11+
<version>1.41.1-SNAPSHOT</version>
1212

1313
<name>Mapcode Java Library</name>
1414
<description>

pom.xml.versionsBackup

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.mapcode</groupId>
8+
<artifactId>mapcode</artifactId>
9+
10+
<packaging>jar</packaging>
11+
<version>1.41</version>
12+
13+
<name>Mapcode Java Library</name>
14+
<description>
15+
This library offers Java support for mapcodes.
16+
For more info: http://www.mapcode.com
17+
</description>
18+
19+
<organization>
20+
<name>Stichting Mapcode Foundation</name>
21+
<url>http://mapcode.com</url>
22+
</organization>
23+
24+
<developers>
25+
<developer>
26+
<id>pieter</id>
27+
<name>Pieter Geelen</name>
28+
<organization>Mapcode</organization>
29+
<roles>
30+
<role>Founder</role>
31+
</roles>
32+
</developer>
33+
34+
<developer>
35+
<id>rijn</id>
36+
<name>Rijn Buve</name>
37+
<organization>Mapcode</organization>
38+
<roles>
39+
<role>Developer</role>
40+
</roles>
41+
</developer>
42+
43+
<developer>
44+
<id>matthew</id>
45+
<name>Matthew Lowden</name>
46+
<organization>Mapcode</organization>
47+
<roles>
48+
<role>Developer</role>
49+
</roles>
50+
</developer>
51+
</developers>
52+
53+
<licenses>
54+
<license>
55+
<name>Apache License, Version 2.0</name>
56+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
57+
<distribution>repo</distribution>
58+
<comments>A business-friendly OSS license</comments>
59+
</license>
60+
</licenses>
61+
62+
<url>http://mapcode.com</url>
63+
<scm>
64+
<url>http://github.com/mapcode-foundation/mapcode-java</url>
65+
</scm>
66+
67+
<!-- Dependencies on other packages. -->
68+
<properties>
69+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
70+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
71+
<jdk.version>1.7</jdk.version>
72+
73+
<gson.version>2.3.1</gson.version>
74+
<jsr305.version>3.0.0</jsr305.version>
75+
<junit.version>4.12</junit.version>
76+
<log4j.version>1.2.17</log4j.version>
77+
<slf4j.version>1.7.10</slf4j.version>
78+
<nexus-staging-maven-plugin.version>1.6.5</nexus-staging-maven-plugin.version>
79+
<maven-source-plugin.version>2.4</maven-source-plugin.version>
80+
<maven-javadoc-plugin.version>2.10.1</maven-javadoc-plugin.version>
81+
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
82+
<maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
83+
</properties>
84+
85+
<distributionManagement>
86+
<snapshotRepository>
87+
<id>ossrh</id>
88+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
89+
</snapshotRepository>
90+
</distributionManagement>
91+
92+
<build>
93+
<plugins>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-source-plugin</artifactId>
97+
<version>${maven-source-plugin.version}</version>
98+
<executions>
99+
<execution>
100+
<id>attach-sources</id>
101+
<goals>
102+
<goal>jar-no-fork</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-javadoc-plugin</artifactId>
111+
<version>${maven-javadoc-plugin.version}</version>
112+
<executions>
113+
<execution>
114+
<id>attach-javadocs</id>
115+
<goals>
116+
<goal>jar</goal>
117+
</goals>
118+
</execution>
119+
</executions>
120+
</plugin>
121+
122+
<plugin>
123+
<groupId>org.sonatype.plugins</groupId>
124+
<artifactId>nexus-staging-maven-plugin</artifactId>
125+
<version>${nexus-staging-maven-plugin.version}</version>
126+
<extensions>true</extensions>
127+
<configuration>
128+
<serverId>ossrh</serverId>
129+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
130+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
131+
</configuration>
132+
</plugin>
133+
134+
<plugin>
135+
<groupId>org.apache.maven.plugins</groupId>
136+
<artifactId>maven-gpg-plugin</artifactId>
137+
<version>${maven-gpg-plugin.version}</version>
138+
<executions>
139+
<execution>
140+
<id>sign-artifacts</id>
141+
<phase>verify</phase>
142+
<goals>
143+
<goal>sign</goal>
144+
</goals>
145+
</execution>
146+
</executions>
147+
</plugin>
148+
149+
<plugin>
150+
<groupId>org.apache.maven.plugins</groupId>
151+
<artifactId>maven-compiler-plugin</artifactId>
152+
<version>${maven-compiler-plugin.version}</version>
153+
<configuration>
154+
<source>${jdk.version}</source>
155+
<target>${jdk.version}</target>
156+
</configuration>
157+
</plugin>
158+
</plugins>
159+
</build>
160+
161+
<dependencies>
162+
163+
<!-- Logging. -->
164+
<dependency>
165+
<groupId>log4j</groupId>
166+
<artifactId>log4j</artifactId>
167+
<version>${log4j.version}</version>
168+
</dependency>
169+
170+
<dependency>
171+
<groupId>org.slf4j</groupId>
172+
<artifactId>slf4j-api</artifactId>
173+
<version>${slf4j.version}</version>
174+
</dependency>
175+
176+
<dependency>
177+
<groupId>org.slf4j</groupId>
178+
<artifactId>slf4j-log4j12</artifactId>
179+
<version>${slf4j.version}</version>
180+
</dependency>
181+
182+
<!-- Unit testing. -->
183+
<dependency>
184+
<groupId>junit</groupId>
185+
<artifactId>junit</artifactId>
186+
<version>${junit.version}</version>
187+
<scope>test</scope>
188+
</dependency>
189+
190+
<!-- @Nullable and @Nonnull annotations. -->
191+
<dependency>
192+
<groupId>com.google.code.findbugs</groupId>
193+
<artifactId>jsr305</artifactId>
194+
<version>${jsr305.version}</version>
195+
<type>jar</type>
196+
<scope>provided</scope>
197+
<optional>true</optional>
198+
</dependency>
199+
200+
<!-- JSON. -->
201+
<dependency>
202+
<groupId>com.google.code.gson</groupId>
203+
<artifactId>gson</artifactId>
204+
<version>${gson.version}</version>
205+
<scope>test</scope>
206+
</dependency>
207+
</dependencies>
208+
</project>

src/site/apt/ReleaseNotes.apt.vm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Release Notes (Version ${project.version})
99
In any case, never depend on them for your own non-<<<SNAPSHOT>>> releases.
1010
#end
1111

12+
* 1.41.1
13+
14+
To be done.
15+
1216
* 1.41
1317

1418
* Added the India state Telangana (IN-TG), until 2014 a region in Adhra Pradesh.

0 commit comments

Comments
 (0)