Skip to content

Commit

Permalink
core 1.0.1 and added junit
Browse files Browse the repository at this point in the history
  • Loading branch information
FunixG committed May 15, 2023
1 parent e3998d3 commit c6351cf
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crud/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.funixproductions.core</groupId>
<artifactId>funixproductions-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion exceptions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.funixproductions.core</groupId>
<artifactId>funixproductions-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>

<groupId>com.funixproductions.core.exceptions</groupId>
Expand Down
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>com.funixproductions.core</groupId>
<artifactId>funixproductions-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>funixproductions-core</name>
<description>funixproductions-core for all copany projects</description>
<url>https://github.com/FunixProductions/spring-core</url>
Expand All @@ -28,7 +28,7 @@

<properties>
<java.version>17</java.version>
<com.funixproductions.core.version>1.0.0</com.funixproductions.core.version>
<com.funixproductions.core.version>1.0.1</com.funixproductions.core.version>

<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<com.google.guava.version>31.1-jre</com.google.guava.version>
Expand All @@ -48,6 +48,8 @@
<org.mapstruct.version>1.5.5.Final</org.mapstruct.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<maven.compiler.version>3.11.0</maven.compiler.version>
<!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
<io.jsonwebtoken.version>0.11.5</io.jsonwebtoken.version>
</properties>

<licenses>
Expand Down Expand Up @@ -152,6 +154,14 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion test-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.funixproductions.core</groupId>
<artifactId>funixproductions-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>

<groupId>com.funixproductions.core.test</groupId>
Expand Down
2 changes: 1 addition & 1 deletion tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.funixproductions.core</groupId>
<artifactId>funixproductions-core</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>

<groupId>com.funixproductions.core.tools</groupId>
Expand Down

0 comments on commit c6351cf

Please sign in to comment.