File tree 2 files changed +20
-31
lines changed 2 files changed +20
-31
lines changed Original file line number Diff line number Diff line change 1
- # Compiled class file
2
- * .class
3
-
4
- # Log file
5
- * .log
6
-
7
- # BlueJ files
8
- * .ctxt
9
-
10
- # Mobile Tools for Java (J2ME)
11
- .mtj.tmp /
12
-
13
- # Package Files #
14
- * .jar
15
- * .war
16
- * .nar
17
- * .ear
18
- * .zip
19
- * .tar.gz
20
- * .rar
21
-
22
- # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23
- hs_err_pid *
24
1
2
+ .gradle
25
3
.idea
4
+ build
5
+ gradle
26
6
27
7
Test.java
Original file line number Diff line number Diff line change 1
1
plugins {
2
+ id ' java'
2
3
id ' maven-publish'
3
- id " java"
4
4
}
5
5
6
- group = ' com.github.MittyRobotics'
7
- version = " 1.0.0"
6
+
7
+ group ' com.github.mittyrobotics'
8
+ version ' 1.0'
8
9
9
10
repositories {
10
11
mavenCentral()
11
- maven { url ' https://jitpack.io' }
12
+ maven { url " https://jitpack.io" }
13
+ }
14
+
15
+ dependencies {
16
+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.7.0'
17
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.7.0'
12
18
}
13
19
20
+ test {
21
+ useJUnitPlatform()
22
+ }
23
+
24
+
14
25
publishing {
15
26
publications {
16
- mavenJava(MavenPublication ) {
17
- groupId = ' com.github.MittyRobotics'
18
- artifactId = ' path-following'
19
- version = ' 1.0.0'
27
+ maven(MavenPublication ) {
28
+ from components. java
20
29
}
21
30
}
22
31
}
You can’t perform that action at this time.
0 commit comments