Roughly move files to fit gradle project

This commit is contained in:
2014-11-29 20:01:56 +00:00
parent 1e8e887d60
commit f847c1a597
57 changed files with 13960 additions and 13952 deletions

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
.gradle
.settings
.project
.classpath
.project
.maven
bin
build

22
build.gradle Normal file
View 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'))
}
}

View File

@@ -1,3 +0,0 @@
#Thu Oct 06 09:12:32 CEST 2005
eclipse.preferences.version=1
internal.default.compliance=default

View File

@@ -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

View File

@@ -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