File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
src/main/java/fi/helsinki/cs/tmc/langs/util Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 16
16
<version >${project.version} </version >
17
17
</dependency >
18
18
<dependency >
19
- <groupId >fi.helsinki.cs.tmc </groupId >
20
- <artifactId >tmc-langs-util </artifactId >
21
- <version >${project.version} </version >
19
+ <groupId >org.apache.commons </groupId >
20
+ <artifactId >commons-lang3 </artifactId >
21
+ <version >3.3.2 </version >
22
22
</dependency >
23
23
</dependencies >
24
24
</project >
Original file line number Diff line number Diff line change 66
66
<version >${project.version} </version >
67
67
<type >jar</type >
68
68
</dependency >
69
+ <dependency >
70
+ <groupId >fi.helsinki.cs.tmc</groupId >
71
+ <artifactId >tmc-langs-r</artifactId >
72
+ <version >${project.version} </version >
73
+ <type >jar</type >
74
+ </dependency >
69
75
<!-- <dependency>>
70
76
<groupId>fi.helsinki.cs.tmc</groupId>
71
77
<artifactId>tmc-langs-rust</artifactId>
Original file line number Diff line number Diff line change 7
7
import fi .helsinki .cs .tmc .langs .java .maven .MavenPlugin ;
8
8
import fi .helsinki .cs .tmc .langs .make .MakePlugin ;
9
9
import fi .helsinki .cs .tmc .langs .python3 .Python3Plugin ;
10
+ import fi .helsinki .cs .tmc .langs .r .RPlugin ;
10
11
11
12
import org .slf4j .Logger ;
12
13
import org .slf4j .LoggerFactory ;
@@ -20,6 +21,7 @@ public enum ProjectType {
20
21
NO_TESTS (new NoTestsPlugin ()), // Must be before Makefile for compatability reasons
21
22
MAKEFILE (new MakePlugin ()),
22
23
PYTHON3 (new Python3Plugin ()),
24
+ R (new RPlugin ()),
23
25
JAVA_MAVEN (new MavenPlugin ()),
24
26
// for legacy and matching reasons keep the java ant as the last choise.
25
27
JAVA_ANT (new AntPlugin ());
You can’t perform that action at this time.
0 commit comments