Migrate to renamed artifact jlibitunes
This commit is contained in:
@@ -3,7 +3,6 @@ subprojects {
|
|||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
apply plugin: 'cpp-lib'
|
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|||||||
@@ -1,26 +1,21 @@
|
|||||||
def mainClass = 'mimis.Main'
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
//url 'C:/Users/Rik/Git/github/wiigee/.maven/'
|
|
||||||
url 'https://github.com/Boukefalos/wiigee/raw/mvn-repo/'
|
url 'https://github.com/Boukefalos/wiigee/raw/mvn-repo/'
|
||||||
|
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
url 'https://github.com/Boukefalos/iTunesController/raw/mvn-repo/'
|
url 'https://github.com/Boukefalos/jlibitunes/raw/mvn-repo/'
|
||||||
}
|
}
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':base')
|
compile project(':base')
|
||||||
compile project(':wiiusej')
|
|
||||||
|
|
||||||
compile 'org.wiigee:wiigee:1.5.6'
|
compile 'org.wiigee:wiigee:1.5.6'
|
||||||
compile 'com.dt:iTunesController:0.3'
|
compile 'com.dt:jlibitunes:0.3'
|
||||||
|
|
||||||
compile files('lib/jxinput.jar')
|
compile files('lib/jxinput.jar')
|
||||||
compile fileTree(dir: 'libs', include: '*.jar')
|
compile fileTree(dir: 'lib', include: '*.jar')
|
||||||
|
|
||||||
compile 'commons-collections:commons-collections:3.+'
|
compile 'commons-collections:commons-collections:3.+'
|
||||||
compile 'org.slf4j:slf4j-api:1.+'
|
compile 'org.slf4j:slf4j-api:1.+'
|
||||||
@@ -30,7 +25,7 @@ dependencies {
|
|||||||
|
|
||||||
jar {
|
jar {
|
||||||
manifest {
|
manifest {
|
||||||
attributes 'Main-Class': mainClass
|
attributes 'Main-Class': 'mimis.Main'
|
||||||
}
|
}
|
||||||
dependsOn configurations.runtime
|
dependsOn configurations.runtime
|
||||||
from {
|
from {
|
||||||
@@ -39,16 +34,3 @@ jar {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uploadArchives {
|
|
||||||
repositories {
|
|
||||||
mavenDeployer {
|
|
||||||
repository(url: "http://server:8081/artifactory/test-local") {
|
|
||||||
authentication(userName: System.getenv("UPLOAD_USERNAME"), password: System.getenv("UPLOAD_PASSWORD"))
|
|
||||||
}
|
|
||||||
pom.groupId = 'testgroup'
|
|
||||||
pom.artifactId = 'bla'
|
|
||||||
pom.version = '5.6'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user