Skip to content

Commit 40c1162

Browse files
committed
Initial commit
0 parents  commit 40c1162

11 files changed

Lines changed: 745 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/*
2+
.idea/*
3+
.gradle/*

build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
group 'edu.wpi.first.wpilib'
2+
version '1.0-SNAPSHOT'
3+
4+
apply plugin: 'java'
5+
apply plugin: 'application'
6+
7+
sourceCompatibility = 1.8
8+
mainClassName = 'edu.wpi.first.wpilib.opencv.installer.Installer'
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
dependencies {
15+
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.10'
16+
compile group: 'commons-cli', name: 'commons-cli', version: '+'
17+
}
18+
19+
task fatJar(type: Jar) {
20+
manifest {
21+
attributes 'Implementation-Title': 'Gradle Jar File Example',
22+
'Implementation-Version': version,
23+
'Main-Class': mainClassName
24+
}
25+
baseName = project.name + '-all'
26+
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
27+
with jar
28+
}

gradle/wrapper/gradle-wrapper.jar

51.6 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sat Sep 10 16:21:35 EDT 2016
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-bin.zip

gradlew

Lines changed: 169 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'opencv-installer'
2+

0 commit comments

Comments
 (0)