Skip to content

Commit

Permalink
Merge pull request #186 from includealex/181
Browse files Browse the repository at this point in the history
Pom dependencies added.
  • Loading branch information
yegor256 authored Oct 1, 2022
2 parents 30e3c78 + d028426 commit 0fe4ef0
Showing 1 changed file with 84 additions and 6 deletions.
90 changes: 84 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,21 @@ SOFTWARE.
<properties>
<antlr.version>4.11.1</antlr.version>
<antrun.version>1.8</antrun.version>
<arrow-core.version>1.0.1</arrow-core.version>
<checkstyle.version>3.0.0</checkstyle.version>
<cli.version>1.5.0</cli.version>
<diktat.version>1.2.2</diktat.version>
<enforcer.version>3.1.0</enforcer.version>
<jacoco.version>0.8.8</jacoco.version>
<java.version>[11,)</java.version>
<junit-jupiter-api.version>5.8.2</junit-jupiter-api.version>
<junit-jupiter-engine.version>5.8.2</junit-jupiter-engine.version>
<junit-platform.version>1.9.1</junit-platform.version>
<kotlin.version>1.7.20</kotlin.version>
<kotlin-loggin.version>3.0.0</kotlin-loggin.version>
<mvn.version>3.8.1</mvn.version>
<pmd.version>3.13.0</pmd.version>
<slf4j.vesion>1.7.33</slf4j.vesion>
</properties>
<build>
<!-- <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
Expand Down Expand Up @@ -255,9 +262,6 @@ SOFTWARE.
<distribution>site</distribution>
</license>
</licenses>
<!--
@todo #162:15m Add developers who were mentioned in build.gradle.kts
-->
<developers>
<developer>
<id>1</id>
Expand All @@ -280,6 +284,42 @@ SOFTWARE.
</roles>
<timezone>+3</timezone>
</developer>
<developer>
<id>3</id>
<name>Eugene Zouev</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+3</timezone>
</developer>
<developer>
<id>4</id>
<name>Maxim Stepanov</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+3</timezone>
</developer>
<developer>
<id>5</id>
<name>Ilya Milyoshin</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+3</timezone>
</developer>
<developer>
<id>6</id>
<name>Egor Klementev</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+3</timezone>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
Expand All @@ -303,14 +343,52 @@ SOFTWARE.
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<!--
@todo #162:90m Add dependencies from build.gradle.kts
-->
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>${cli.version}</version>
</dependency>
<dependency>
<groupId>io.arrow-kt</groupId>
<artifactId>arrow-core</artifactId>
<version>${arrow-core.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.vesion}</version>
<!-- <scope>test</scope> -->
</dependency>
<dependency>
<groupId>io.github.microutils</groupId>
<artifactId>kotlin-logging-jvm</artifactId>
<version>${kotlin-loggin.version}</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>${junit-platform.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-engine.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<!--
@todo #181:90m Add dependency from j2ast repo.
-->
</project>

3 comments on commit 0fe4ef0

@0pdd
Copy link
Member

@0pdd 0pdd commented on 0fe4ef0 Oct 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 162-89bfa4fd disappeared from pom.xml), that's why I closed #182. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link
Member

@0pdd 0pdd commented on 0fe4ef0 Oct 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 162-251e7a1d disappeared from pom.xml), that's why I closed #184. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link
Member

@0pdd 0pdd commented on 0fe4ef0 Oct 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 181-9b6edbbd discovered in pom.xml) and submitted as #188. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.