File tree 11 files changed +18
-24
lines changed
main/java/com/github/nramc/dev/journey/api
web/resources/rest/journeys
test/java/com/github/nramc/dev/journey/api/web/resources/rest/journeys
11 files changed +18
-24
lines changed Original file line number Diff line number Diff line change 30
30
<rewrite-maven-plugin .skip.dry-run-execution>false</rewrite-maven-plugin .skip.dry-run-execution>
31
31
32
32
<!-- mvn versions:display-property-updates -->
33
- <commons-geojson .version>0.0.38</commons-geojson .version>
34
33
<geojson4j .version>1.0.1</geojson4j .version>
35
34
<maven-release-plugin .version>3.1.1</maven-release-plugin .version>
36
35
<rewrite-java-security .version>2.17.1</rewrite-java-security .version>
103
102
<artifactId >spring-boot-starter-mail</artifactId >
104
103
</dependency >
105
104
106
- <dependency >
107
- <groupId >io.github.nramc.commons</groupId >
108
- <artifactId >commons-geojson</artifactId >
109
- <version >${commons-geojson.version} </version >
110
- </dependency >
111
105
<dependency >
112
106
<groupId >io.github.nramc</groupId >
113
107
<artifactId >geojson4j</artifactId >
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .core .journey ;
2
2
3
- import com .github .nramc .commons . geojson .domain .GeoJson ;
4
- import com .github .nramc .commons . geojson .domain .Geometry ;
3
+ import com .github .nramc .geojson .domain .GeoJson ;
4
+ import com .github .nramc .geojson .domain .Geometry ;
5
5
import jakarta .validation .constraints .NotBlank ;
6
6
import jakarta .validation .constraints .NotNull ;
7
7
import lombok .Builder ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .repository .converters ;
2
2
3
3
import com .fasterxml .jackson .databind .ObjectMapper ;
4
- import com .github .nramc .commons . geojson .domain .GeoJson ;
4
+ import com .github .nramc .geojson .domain .GeoJson ;
5
5
import org .bson .Document ;
6
6
import org .springframework .core .convert .converter .Converter ;
7
7
import org .springframework .lang .NonNull ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .repository .converters ;
2
2
3
3
import com .fasterxml .jackson .databind .ObjectMapper ;
4
- import com .github .nramc .commons . geojson .domain .Geometry ;
4
+ import com .github .nramc .geojson .domain .Geometry ;
5
5
import org .bson .Document ;
6
6
import org .springframework .core .convert .converter .Converter ;
7
7
import org .springframework .lang .NonNull ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .repository .converters ;
2
2
3
3
import com .fasterxml .jackson .databind .ObjectMapper ;
4
- import com .github .nramc .commons . geojson .domain .GeoJson ;
4
+ import com .github .nramc .geojson .domain .GeoJson ;
5
5
import org .bson .Document ;
6
6
import org .springframework .core .convert .converter .Converter ;
7
7
import org .springframework .lang .NonNull ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .repository .converters ;
2
2
3
3
import com .fasterxml .jackson .databind .ObjectMapper ;
4
- import com .github .nramc .commons . geojson .domain .Geometry ;
4
+ import com .github .nramc .geojson .domain .Geometry ;
5
5
import org .bson .Document ;
6
6
import org .springframework .core .convert .converter .Converter ;
7
7
import org .springframework .lang .NonNull ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .repository .journey ;
2
2
3
- import com .github .nramc .commons . geojson .domain .GeoJson ;
4
- import com .github .nramc .commons . geojson .domain .Geometry ;
3
+ import com .github .nramc .geojson .domain .GeoJson ;
4
+ import com .github .nramc .geojson .domain .Geometry ;
5
5
import lombok .AllArgsConstructor ;
6
6
import lombok .Builder ;
7
7
import lombok .Data ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .repository .journey .converter ;
2
2
3
- import com .github .nramc .commons .geojson .domain .Feature ;
4
3
import com .github .nramc .dev .journey .api .repository .journey .JourneyEntity ;
5
4
import com .github .nramc .dev .journey .api .repository .journey .JourneyGeoDetailsEntity ;
5
+ import com .github .nramc .geojson .domain .Feature ;
6
6
import lombok .experimental .UtilityClass ;
7
7
import org .apache .commons .collections4 .map .HashedMap ;
8
8
import org .apache .commons .lang3 .StringUtils ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .web .resources .rest .journeys .find ;
2
2
3
- import com .github .nramc .commons .geojson .domain .Feature ;
4
- import com .github .nramc .commons .geojson .domain .FeatureCollection ;
5
- import com .github .nramc .commons .geojson .domain .GeoJson ;
6
3
import com .github .nramc .dev .journey .api .repository .journey .JourneyEntity ;
7
4
import com .github .nramc .dev .journey .api .repository .journey .JourneyRepository ;
8
5
import com .github .nramc .dev .journey .api .core .journey .security .JourneyAuthorizationManager ;
9
6
import com .github .nramc .dev .journey .api .repository .journey .converter .JourneyFeatureConverter ;
7
+ import com .github .nramc .geojson .domain .Feature ;
8
+ import com .github .nramc .geojson .domain .FeatureCollection ;
9
+ import com .github .nramc .geojson .domain .GeoJson ;
10
10
import io .swagger .v3 .oas .annotations .Operation ;
11
11
import lombok .RequiredArgsConstructor ;
12
12
import lombok .extern .slf4j .Slf4j ;
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .web .resources .rest .journeys .update .geo ;
2
2
3
- import com .github .nramc .commons . geojson .domain .GeoJson ;
4
- import com .github .nramc .commons . geojson .domain .Geometry ;
3
+ import com .github .nramc .geojson .domain .GeoJson ;
4
+ import com .github .nramc .geojson .domain .Geometry ;
5
5
import jakarta .validation .constraints .NotBlank ;
6
6
import jakarta .validation .constraints .NotNull ;
7
7
Original file line number Diff line number Diff line change 1
1
package com .github .nramc .dev .journey .api .web .resources .rest .journeys ;
2
2
3
- import com .github .nramc .commons .geojson .domain .Feature ;
4
- import com .github .nramc .commons .geojson .domain .FeatureCollection ;
5
- import com .github .nramc .commons .geojson .domain .Point ;
6
- import com .github .nramc .commons .geojson .domain .Position ;
7
3
import com .github .nramc .dev .journey .api .config .security .WithMockAuthenticatedUser ;
8
4
import com .github .nramc .dev .journey .api .core .journey .security .Visibility ;
9
5
import com .github .nramc .dev .journey .api .repository .journey .JourneyEntity ;
12
8
import com .github .nramc .dev .journey .api .repository .journey .JourneyImagesDetailsEntity ;
13
9
import com .github .nramc .dev .journey .api .repository .journey .JourneyVideoDetailEntity ;
14
10
import com .github .nramc .dev .journey .api .repository .journey .JourneyVideosDetailsEntity ;
11
+ import com .github .nramc .geojson .domain .Feature ;
12
+ import com .github .nramc .geojson .domain .FeatureCollection ;
13
+ import com .github .nramc .geojson .domain .Point ;
14
+ import com .github .nramc .geojson .domain .Position ;
15
15
import lombok .experimental .UtilityClass ;
16
16
17
17
import java .time .LocalDate ;
You can’t perform that action at this time.
0 commit comments