Skip to content

Commit c3b1b0e

Browse files
committed
Update project structure
1 parent 7a0d4ee commit c3b1b0e

36 files changed

+50
-4756
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
bin
2+
.gradle/
3+
.settings
4+
.classpath
5+
.project
6+
.metadata
7+
.factorypath
8+
9+
build/
10+
bin/
11+
memory/

BigArrayList-1.4.jar

-17.7 KB
Binary file not shown.

build.gradle

Lines changed: 39 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,53 @@
11

22
plugins {
33
id 'java'
4-
id 'idea'
4+
id 'java-gradle-plugin'
5+
id 'maven-publish'
56
}
67

8+
version="1.5"
9+
group="com.dselent"
10+
11+
sourceCompatibility = targetCompatibility = 8
12+
713
repositories {
814
mavenCentral()
915
}
1016

11-
test {
12-
useJUnitPlatform()
13-
}
14-
1517
dependencies {
16-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.3'
18+
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.3'
19+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
1720
}
1821

22+
test {
23+
useJUnitPlatform()
24+
testLogging {
25+
events "passed", "skipped", "failed"
26+
}
27+
}
1928

29+
java {
30+
withSourcesJar()
31+
withJavadocJar()
32+
}
2033

21-
22-
34+
publishing {
35+
repositories {
36+
maven {
37+
name = "minecrafttasSnapshots"
38+
url = "https://maven.minecrafttas.com/snapshots"
39+
credentials(PasswordCredentials)
40+
authentication {
41+
basic(BasicAuthentication)
42+
}
43+
}
44+
maven {
45+
name = "minecrafttasMain"
46+
url = "https://maven.minecrafttas.com/main"
47+
credentials(PasswordCredentials)
48+
authentication {
49+
basic(BasicAuthentication)
50+
}
51+
}
52+
}
53+
}

doc/allclasses-frame.html

Lines changed: 0 additions & 20 deletions
This file was deleted.

doc/allclasses-noframe.html

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)