Skip to content

Commit

Permalink
additional configuration for maven release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Arena committed Jul 1, 2021
1 parent 8b9a2b5 commit 3b0bd47
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
1 change: 1 addition & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--illegal-access=permit
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,17 @@ Building the API client library requires:
1. Java 11+
2. Maven

## Installation

To install the library to your local Maven repository, simply execute:

```shell
mvn clean install
```

To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:

```shell
mvn clean deploy
```
## Dependencies

Then include the dependency in your project pom:
```xml
<dependency>
<groupId>barena</groupId>
<groupId>io.github.benarena</groupId>
<artifactId>moov-ach-model</artifactId>
<version>1.0.0</version>
</dependency>
```

Refer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information.

## Dependencies

### Jackson Java 8 Time
Note that this library requires the [Jackson Java8 Time Module](https://github.com/FasterXML/jackson-modules-java8/tree/master/datetime)
in order to parse and write dates and times.
Expand Down Expand Up @@ -87,6 +71,8 @@ ObjectMapper mapper = JsonMapper.builder()
- [Offset](docs/Offset.md)
- [ValidateOpts](docs/ValidateOpts.md)

## Publishing

## History

Automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) from [moov/ach 1.9.2](https://github.com/moov-io/ach) then slimmed down and enhanced to improve data typing, enumerated values, etc.
Expand Down
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@
<url>https://github.com/benarena/moov-ach-model</url>
</scm>

<developers>
<developer>
<id>barena</id>
<name>Ben Arena</name>
<email>ben.arena@gmail.com</email>
<roles>
<role>Project-Administrator</role>
<role>Developer</role>
</roles>
<timezone>America/Los_Angeles</timezone>
</developer>
</developers>

<prerequisites>
<maven>3.8.1</maven>
</prerequisites>
Expand Down Expand Up @@ -128,7 +141,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit 3b0bd47

Please sign in to comment.