Skip to content

Commit 10e3297

Browse files
committed
CHANGELOG.md rotation, README.md update
1 parent e8eae2c commit 10e3297

File tree

3 files changed

+25
-17
lines changed

3 files changed

+25
-17
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ _SUCCESS
3535
.ensime*
3636
tags
3737
.vscode
38+
.metals

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
- Move all core resources to epsg submodule [#95](https://github.com/locationtech/proj4j/pull/95)
12+
1013
## [1.2.1] - 2022-12-12
1114

1215
### Fixed

README.md

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,45 +13,49 @@ Proj4J artifacts are available on maven central.
1313

1414
### Using Proj4J with Maven
1515

16-
To include Proj4J in a Maven project, add a dependency block like the following:
16+
**!Important!** As of `1.2.2` version, `proj4-core` contains no EPSG Licensed files.
17+
In order to make proj4j properly operate, it makes sense to consider `proj4-epsg` dependency usage.
1718

19+
To include Proj4J in a Maven project, add a dependency block like the following:
1820
```xml
1921
<properties>
20-
<proj4j.version><latest version></proj4j.version>
22+
<proj4j.version>{latest version}</proj4j.version>
2123
</properties>
2224
<dependency>
2325
<groupId>org.locationtech.proj4j</groupId>
2426
<artifactId>proj4j</artifactId>
2527
<version>${proj4j.version}</version>
2628
</dependency>
2729
```
28-
where `<latest version>` refers to the version indicated by the badge above.
29-
30-
### Using Proj4J with Gradle
31-
32-
To include Proj4J in a Gradle project, add a dependency block like the following:
30+
where `{latest version}` refers to the version indicated by the badge above.
3331

34-
```
35-
dependencies {
36-
implementation 'org.locationtech.proj4j:proj4j:<latest version>'
37-
}
38-
```
39-
where `<latest version>` refers to the version indicated by the badge above.
32+
#### Proj4j EPSG
4033

41-
### Proj4j EPSG
34+
`Proj4J-EPSG` module distributes a portion of the EPSG dataset. This artifact is released the [EPSG database distribution license](https://raw.githubusercontent.com/locationtech/proj4j/master/LICENSE.EPSG).
4235

43-
Proj4J-EPSG module distributes a portion of the EPSG dataset. This artifact is released the [EPSG database distribution license](https://raw.githubusercontent.com/locationtech/proj4j/master/LICENSE.EPSG).
36+
To include `Proj4J-EPSG` in a Maven project, add a dependency block like the following:
4437
```xml
4538
<properties>
46-
<proj4j.version><latest version></proj4j.version>
39+
<proj4j.version>{latest version}</proj4j.version>
4740
</properties>
4841
<dependency>
4942
<groupId>org.locationtech.proj4j</groupId>
5043
<artifactId>proj4j-epsg</artifactId>
5144
<version>${proj4j.version}</version>
5245
</dependency>
5346
```
54-
where `<latest version>` refers to the version indicated by the badge above.
47+
where `{latest version}` refers to the version indicated by the badge above.
48+
49+
### Using Proj4J with Gradle
50+
51+
To include Proj4J in a Gradle project, add a dependency block like the following:
52+
53+
```
54+
dependencies {
55+
implementation 'org.locationtech.proj4j:proj4j:{latest version}'
56+
}
57+
```
58+
where `{latest version}` refers to the version indicated by the badge above.
5559

5660
### Basic Usage
5761

0 commit comments

Comments
 (0)