Skip to content

Commit

Permalink
57 RELEASE
Browse files Browse the repository at this point in the history
- Update dependencies
- HUGE JCB update
  • Loading branch information
seralekseenko committed Aug 22, 2022
1 parent dfee1de commit 46eb340
Showing 1 changed file with 16 additions and 36 deletions.
52 changes: 16 additions & 36 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
<groupId>academy.kovalevskyi</groupId>
<artifactId>Zeus</artifactId>
<packaging>jar</packaging>
<version>57-SNAPSHOT</version>
<version>57</version>

<name>Zeus</name>
<description>
This thing checks students' homework at kovalevskyi.academy.
This thing checks students' homework at academy.kovalevskyi...
</description>

<properties>
<version.testingFramework>30</version.testingFramework>
<version.testingFramework>31</version.testingFramework>

<version.codingBootcamp>27</version.codingBootcamp>
<version.algorithmsWithJava>22</version.algorithmsWithJava>
<version.javaDeepDive>20</version.javaDeepDive>
<version.codingBootcamp>28</version.codingBootcamp>
<version.algorithmsWithJava>23</version.algorithmsWithJava>
<version.javaDeepDive>21</version.javaDeepDive>
<version.backendCloudEngineer>1-SNAPSHOT</version.backendCloudEngineer>

<java.version>17</java.version>
<checkstyle.version>9.2.1</checkstyle.version>
<!-- <checkstyle.version>9.3</checkstyle.version> CRASH BUG-->
<!--<checkstyle.version>10.3.2</checkstyle.version>--> <!--CRASH BUG-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -60,7 +60,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.0.0-M7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -130,7 +130,7 @@
</execution>
</executions>
<configuration>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<includeTestSourceDirectory>false</includeTestSourceDirectory>
<!--https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/custom-checker-config.html-->
<configLocation>google_checks.xml</configLocation>
<encoding>UTF-8</encoding>
Expand All @@ -140,44 +140,24 @@
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
</configuration>
</plugin>
<!--this is a test coverage plugin-->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.6.2</version>
<version>4.6.3</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.8.1</version>
<version>3.8.5</version>
</dependency>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
Expand All @@ -187,12 +167,12 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.12.7</version>
<version>1.12.13</version>
</dependency>
<!-- Testing Framework-->
<dependency>
Expand All @@ -216,11 +196,11 @@
<artifactId>AlgorithmsWithJava</artifactId>
<version>${version.algorithmsWithJava}</version>
</dependency>
<dependency>
<!--<dependency>
<groupId>academy.kovalevskyi</groupId>
<artifactId>BackendCloudEngineer</artifactId>
<version>${version.backendCloudEngineer}</version>
</dependency>
</dependency>-->
</dependencies>

</project>

0 comments on commit 46eb340

Please sign in to comment.