generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/init address integration (#136)
* 🎉 cp address integration from digiwf * ♻️ address refactor poms * ♻️ address fix poms * ♻️ address fix api gen package name * 🎨 address format client * 🚚 address core rm streaming * ♻️ address replace digiwf exceptions * ♻️ address rename packages * 🎨 address format with spotless * 🗑️ address rename properties and cleanup auto conf * 📝 address update README.md * 🐛 integration add address-integration to root pom * 🐛 address-integration fix parent version * 🐛 address-integration fix parent version * 🚨 fix pmd warnings * 🚨 refactor pmd duplicate code warnings * 🚨 fix pmd warnings * ♻️ address use static import for mock * 🚨 address fix pmd warning
- Loading branch information
Showing
44 changed files
with
5,619 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
refarch-integrations/refarch-address-integration/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# RefArch address integration | ||
|
||
Integration for reading, searching and validating addresses via the LHM address service. | ||
|
||
## Usage | ||
|
||
```xml | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>de.muenchen.refarch</groupId> | ||
<artifactId>refarch-address-integration-starter</artifactId> | ||
<version>...</version> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
## Configuration | ||
|
||
### refarch-address-integration-starter | ||
|
||
| Property | Description | | ||
|-----------------------|----------------------------| | ||
| `refarch.address.url` | URL of the address service | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>de.muenchen.refarch</groupId> | ||
<artifactId>refarch-integrations</artifactId> | ||
<version>1.2.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>refarch-address-integration</artifactId> | ||
<description>Integration of the address service</description> | ||
<packaging>pom</packaging> | ||
|
||
<modules> | ||
<module>refarch-address-integration-client</module> | ||
<module>refarch-address-integration-core</module> | ||
<module>refarch-address-integration-starter</module> | ||
</modules> | ||
|
||
</project> |
Oops, something went wrong.