Skip to content

Commit 087618a

Browse files
fix jitpack
1 parent 74721bd commit 087618a

File tree

2 files changed

+20
-31
lines changed

2 files changed

+20
-31
lines changed

.gitignore

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,7 @@
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

277
Test.java

build.gradle

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,31 @@
11
plugins {
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

910
repositories {
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+
1425
publishing {
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
}

0 commit comments

Comments
 (0)