-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
101 lines (88 loc) · 3.48 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.lernejo</groupId>
<artifactId>korekto-api-grader</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Korekto-API-Grader</name>
<description>Korekto grader for API101 exercise</description>
<url>https://github.com/lernejo/korekto-api-grader</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>15</maven.compiler.source>
<maven.compiler.target>15</maven.compiler.target>
<korekto-toolkit.version>1.1.0</korekto-toolkit.version>
<http-tack.version>0.0.1</http-tack.version>
<logback-classic.version>1.2.3</logback-classic.version>
<retrofit.version>2.9.0</retrofit.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
</properties>
<scm>
<url>https://github.com/lernejo/korekto-api-grader.git</url>
<connection>scm:git:ssh://git@github.com/lernejo/korekto-api-grader.git</connection>
<developerConnection>scm:git:ssh://git@github.com/lernejo/korekto-api-grader.git</developerConnection>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ledoyen</id>
<name>Loïc Ledoyen</name>
<url>https://github.com/ledoyen</url>
<email>ledoyen.loic@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.github.lernejo</groupId>
<artifactId>korekto-toolkit</artifactId>
<version>${korekto-toolkit.version}</version>
</dependency>
<dependency>
<groupId>com.github.lernejo</groupId>
<artifactId>http-tack</artifactId>
<version>${http-tack.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-classic.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>${retrofit.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-gson</artifactId>
<version>${retrofit.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
<configuration>
<mainClass>com.github.lernejo.korekto.toolkit.launcher.GradingJobLauncher</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
</project>