-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from includealex/181
Pom dependencies added.
- Loading branch information
Showing
1 changed file
with
84 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> | ||
|
@@ -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> |
0fe4ef0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
162-89bfa4fd
disappeared frompom.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.0fe4ef0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
162-251e7a1d
disappeared frompom.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.0fe4ef0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Puzzle
181-9b6edbbd
discovered inpom.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.