File tree Expand file tree Collapse file tree 2 files changed +20
-31
lines changed Expand file tree Collapse file tree 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 *
241
2+ .gradle
253.idea
4+ build
5+ gradle
266
277Test.java
Original file line number Diff line number Diff line change 11plugins {
2+ id ' java'
23 id ' maven-publish'
3- id " java"
44}
55
6- group = ' com.github.MittyRobotics'
7- version = " 1.0.0"
6+
7+ group ' com.github.mittyrobotics'
8+ version ' 1.0'
89
910repositories {
1011 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'
1218}
1319
20+ test {
21+ useJUnitPlatform()
22+ }
23+
24+
1425publishing {
1526 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
2029 }
2130 }
2231}
You can’t perform that action at this time.
0 commit comments