Skip to content

Commit 7df7388

Browse files
POM: development toward v2.2.1 ; README: copyright year
1 parent 9d642d9 commit 7df7388

File tree

4 files changed

+77
-77
lines changed

4 files changed

+77
-77
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Find a bug or want to request a new feature? Please let us know by submitting a
7272
Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing)
7373

7474
## Licensing
75-
Copyright 2013-2020 Esri
75+
Copyright 2013-2022 Esri
7676

7777
Licensed under the Apache License, Version 2.0 (the "License");
7878
you may not use this file except in compliance with the License.

hive/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.esri.hadoop</groupId>
66
<artifactId>spatial-sdk-hadoop</artifactId>
7-
<version>2.2.0</version>
7+
<version>2.2.1-SNAPSHOT</version>
88
<relativePath>../</relativePath>
99
</parent>
1010

1111
<artifactId>spatial-sdk-hive</artifactId>
12-
<name>Hive Spatial Framework</name>
12+
<name>Spatial Framework for Hive and SparkSQL</name>
1313

1414
<dependencies>
1515
<dependency>

json/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.esri.hadoop</groupId>
66
<artifactId>spatial-sdk-hadoop</artifactId>
7-
<version>2.2.0</version>
7+
<version>2.2.1-SNAPSHOT</version>
88
<relativePath>../</relativePath>
99
</parent>
1010

pom.xml

+73-73
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33

44
<groupId>com.esri.hadoop</groupId>
55
<artifactId>spatial-sdk-hadoop</artifactId>
6-
<version>2.2.0</version>
6+
<version>2.2.1-SNAPSHOT</version>
77
<packaging>pom</packaging>
88

99
<name>Spatial Framework for Hadoop</name>
1010
<url>http://github.com/Esri/spatial-framework-for-hadoop</url>
1111
<description>Enables developers and data scientists to use the Hadoop data processing system for spatial data analysis.</description>
1212

1313
<licenses>
14-
<license>
15-
<name>The Apache Software License, Version 2.0</name>
16-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17-
<distribution>repo</distribution>
18-
</license>
14+
<license>
15+
<name>The Apache Software License, Version 2.0</name>
16+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17+
<distribution>repo</distribution>
18+
</license>
1919
</licenses>
2020

2121
<developers>
@@ -25,7 +25,7 @@
2525
<organization>Esri</organization>
2626
<organizationUrl>http://www.esri.com</organizationUrl>
2727
<roles>
28-
<role>developer</role>
28+
<role>developer</role>
2929
</roles>
3030
</developer>
3131
<developer>
@@ -34,7 +34,7 @@
3434
<organization>Esri</organization>
3535
<organizationUrl>http://www.esri.com</organizationUrl>
3636
<roles>
37-
<role>developer</role>
37+
<role>developer</role>
3838
</roles>
3939
</developer>
4040
</developers>
@@ -100,10 +100,10 @@
100100
<profile>
101101
<id>java-disable-doclint</id>
102102
<activation>
103-
<jdk>[1.8,)</jdk>
103+
<jdk>[1.8,)</jdk>
104104
</activation>
105105
<properties>
106-
<javadoc.doclint.param>-Xdoclint:none</javadoc.doclint.param>
106+
<javadoc.doclint.param>-Xdoclint:none</javadoc.doclint.param>
107107
</properties>
108108
</profile>
109109

@@ -267,18 +267,18 @@
267267
<hive.version>0.11.0</hive.version>
268268
</properties>
269269
<!-- NEEDED with Hive-0.11 dependencies>
270-
<dependency>
271-
<groupId>javax.jdo</groupId>
272-
<artifactId>jdo2-api</artifactId>
273-
<version>2.3-ec</version>
274-
</dependency>
270+
<dependency>
271+
<groupId>javax.jdo</groupId>
272+
<artifactId>jdo2-api</artifactId>
273+
<version>2.3-ec</version>
274+
</dependency>
275275
</dependencies>
276276
<repositories>
277-
<repository>
278-
<id>org.datanucleus</id>
279-
<name>datanucleus</name>
280-
<url>http://www.datanucleus.org/downloads/maven2/</url>
281-
</repository>
277+
<repository>
278+
<id>org.datanucleus</id>
279+
<name>datanucleus</name>
280+
<url>http://www.datanucleus.org/downloads/maven2/</url>
281+
</repository>
282282
</repositories -->
283283
</profile>
284284
<profile>
@@ -387,21 +387,21 @@
387387
</property>
388388
</activation>
389389
<build>
390-
<plugins>
391-
<plugin>
392-
<groupId>org.apache.maven.plugins</groupId>
393-
<artifactId>maven-gpg-plugin</artifactId>
394-
<executions>
395-
<execution>
396-
<id>sign-artifacts</id>
397-
<phase>verify</phase>
398-
<goals>
399-
<goal>sign</goal>
400-
</goals>
401-
</execution>
402-
</executions>
403-
</plugin>
404-
</plugins>
390+
<plugins>
391+
<plugin>
392+
<groupId>org.apache.maven.plugins</groupId>
393+
<artifactId>maven-gpg-plugin</artifactId>
394+
<executions>
395+
<execution>
396+
<id>sign-artifacts</id>
397+
<phase>verify</phase>
398+
<goals>
399+
<goal>sign</goal>
400+
</goals>
401+
</execution>
402+
</executions>
403+
</plugin>
404+
</plugins>
405405
</build>
406406
</profile>
407407

@@ -453,15 +453,15 @@
453453
</dependency>
454454

455455
<dependency>
456-
<groupId>com.fasterxml.jackson.core</groupId>
457-
<artifactId>jackson-core</artifactId>
458-
<version>${jackson.version}</version>
456+
<groupId>com.fasterxml.jackson.core</groupId>
457+
<artifactId>jackson-core</artifactId>
458+
<version>${jackson.version}</version>
459459
</dependency>
460460

461461
<dependency>
462-
<groupId>com.fasterxml.jackson.core</groupId>
463-
<artifactId>jackson-databind</artifactId>
464-
<version>${jackson.version}</version>
462+
<groupId>com.fasterxml.jackson.core</groupId>
463+
<artifactId>jackson-databind</artifactId>
464+
<version>${jackson.version}</version>
465465
</dependency>
466466

467467
<dependency>
@@ -477,11 +477,11 @@
477477
</dependency>
478478

479479
<dependency>
480-
<groupId>junit</groupId>
481-
<artifactId>junit</artifactId>
482-
<version>${junit.version}</version>
483-
<scope>test</scope>
484-
</dependency>
480+
<groupId>junit</groupId>
481+
<artifactId>junit</artifactId>
482+
<version>${junit.version}</version>
483+
<scope>test</scope>
484+
</dependency>
485485

486486
</dependencies>
487487
</dependencyManagement>
@@ -506,19 +506,19 @@
506506
<argLine>-Xmx1024m</argLine>
507507
</configuration>
508508
</plugin>
509-
<plugin>
510-
<groupId>org.apache.maven.plugins</groupId>
511-
<artifactId>maven-source-plugin</artifactId>
512-
<version>${source.plugin.version}</version>
513-
<executions>
514-
<execution>
515-
<id>attach-sources</id>
516-
<goals>
517-
<goal>jar-no-fork</goal>
518-
</goals>
519-
</execution>
520-
</executions>
521-
</plugin>
509+
<plugin>
510+
<groupId>org.apache.maven.plugins</groupId>
511+
<artifactId>maven-source-plugin</artifactId>
512+
<version>${source.plugin.version}</version>
513+
<executions>
514+
<execution>
515+
<id>attach-sources</id>
516+
<goals>
517+
<goal>jar-no-fork</goal>
518+
</goals>
519+
</execution>
520+
</executions>
521+
</plugin>
522522
<plugin>
523523
<groupId>org.apache.maven.plugins</groupId>
524524
<artifactId>maven-javadoc-plugin</artifactId>
@@ -529,23 +529,23 @@
529529
<goals>
530530
<goal>jar</goal>
531531
</goals>
532-
<configuration>
533-
<additionalparam>${javadoc.doclint.param}</additionalparam>
534-
</configuration>
532+
<configuration>
533+
<additionalparam>${javadoc.doclint.param}</additionalparam>
534+
</configuration>
535535
</execution>
536536
</executions>
537537
</plugin>
538-
<plugin>
539-
<groupId>org.sonatype.plugins</groupId>
540-
<artifactId>nexus-staging-maven-plugin</artifactId>
541-
<version>1.6.7</version>
542-
<extensions>true</extensions>
543-
<configuration>
544-
<serverId>ossrh</serverId>
545-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
546-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
547-
</configuration>
548-
</plugin>
538+
<plugin>
539+
<groupId>org.sonatype.plugins</groupId>
540+
<artifactId>nexus-staging-maven-plugin</artifactId>
541+
<version>1.6.7</version>
542+
<extensions>true</extensions>
543+
<configuration>
544+
<serverId>ossrh</serverId>
545+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
546+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
547+
</configuration>
548+
</plugin>
549549

550550
</plugins>
551551
</pluginManagement>

0 commit comments

Comments
 (0)