Roughly move files to fit gradle project
This commit is contained in:
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
.gradle
|
||||
.settings
|
||||
.project
|
||||
.classpath
|
||||
.project
|
||||
.maven
|
||||
bin
|
||||
build
|
||||
22
build.gradle
Normal file
22
build.gradle
Normal file
@@ -0,0 +1,22 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'cpp'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'eclipse'
|
||||
|
||||
group = 'com.github.boukefalos'
|
||||
archivesBaseName = 'jlibusb'
|
||||
version = '0.5.7'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile 'junit:junit:4.11'
|
||||
}
|
||||
|
||||
uploadArchives {
|
||||
repositories.mavenDeployer {
|
||||
repository(url: uri('.maven'))
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
#Thu Oct 06 09:12:32 CEST 2005
|
||||
eclipse.preferences.version=1
|
||||
internal.default.compliance=default
|
||||
@@ -1,13 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Java libusb-1.0 wrapper
|
||||
Bundle-SymbolicName: ch.ntb.inf.libusbJava
|
||||
Bundle-Version: 1.0.2
|
||||
Bundle-Vendor: libusbjava.sourceforge.net
|
||||
Require-Bundle: org.junit4
|
||||
Export-Package: ch.ntb.inf.libusbJava,
|
||||
ch.ntb.inf.libusbJava.logger,
|
||||
ch.ntb.inf.libusbJava.testApp,
|
||||
ch.ntb.inf.libusbJava.usbView
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.5
|
||||
Import-Package: ch.ntb.inf.libusbJava
|
||||
@@ -1,6 +0,0 @@
|
||||
# enable or disable logging
|
||||
ch.ntb.inf.libusbJava/debug = true
|
||||
# set and configure individual loggers here
|
||||
# the format is: projectName/debug/<loggerX> = <logger name>/<log level>
|
||||
ch.ntb.inf.libusbJava/debug/logger0 = ch.ntb.inf.libusbJava/OFF
|
||||
ch.ntb.inf.libusbJava/debug/logger1 = ch.ntb.inf.libusbJava.test/INFO
|
||||
Reference in New Issue
Block a user