Skip to content

Commit

Permalink
Merge pull request #40
Browse files Browse the repository at this point in the history
BUMP API VERSION FROM 1.0.4 to 1.0.5
  • Loading branch information
pitzzahh committed Oct 28, 2022
2 parents 16bd60e + 27f5608 commit 810f4bc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>io.github.pitzzahh</groupId>
<artifactId>util-classes</artifactId>
<version>1.0.11</version>
<version>1.0.13</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -59,6 +59,12 @@

<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down
13 changes: 12 additions & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/**
* Module info
*/
module automated.teller.machine.API {
requires spring.jdbc;
requires util.classes;
requires spring.jdbc;
requires java.sql;

exports io.github.pitzzahh.atm.dao;
exports io.github.pitzzahh.atm.database;
exports io.github.pitzzahh.atm.entity;
exports io.github.pitzzahh.atm.exceptions;
exports io.github.pitzzahh.atm.mapper;
exports io.github.pitzzahh.atm.service;
exports io.github.pitzzahh.atm.validator;

}

0 comments on commit 810f4bc

Please sign in to comment.