-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (51 loc) · 1.43 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'org.openjfx.javafxplugin' version '0.0.10'
}
repositories {
mavenLocal()
maven {
url = uri('https://repository.aspose.com/repo/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
maven { url "https://frcmaven.wpi.edu/artifactory/release/" }
mavenCentral()
}
dependencies {
implementation 'com.aspose:aspose-cells:20.8'
implementation 'org.apache.poi:poi-ooxml:5.0.0'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation "edu.wpi.first.ntcore:ntcore-java:2021.3.1"
implementation "edu.wpi.first.wpiutil:wpiutil-java:2021.3.1"
implementation "edu.wpi.first.ntcore:ntcore-jni:2021.3.1:windowsx86"
}
group = 'me.danielml.logger'
version = '1.0-SNAPSHOT'
description = 'PrimoLogger'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
javafx {
modules = ['javafx.controls','javafx.fxml']
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes(
'Class-Path': configurations.runtimeClasspath.collect { it.getName() }.join(' '),
'Main-Class': 'me.danielml.logger.Main'
)
}
}