Skip to content

Commit

Permalink
- deleting and ignoring IDE specific files
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Jul 21, 2010
1 parent 0c8977d commit 8e6354c
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 26 deletions.
4 changes: 4 additions & 0 deletions esl-client-bbb/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.project
.classpath
lib

17 changes: 0 additions & 17 deletions esl-client-bbb/.project

This file was deleted.

9 changes: 0 additions & 9 deletions esl-client-bbb/.settings/org.maven.ide.eclipse.prefs

This file was deleted.

69 changes: 69 additions & 0 deletions esl-client-bbb/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
usePlugin 'eclipse'
usePlugin 'java'

version = '0.7'
jar.enabled = true

def appName = 'fs-esl-client'

archivesBaseName = appName

artifacts {
archives jar
}

repositories {
add(new org.apache.ivy.plugins.resolver.ChainResolver()) {
name = 'remote'
returnFirst = true
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "googlecode"
addArtifactPattern "http://red5.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
addArtifactPattern "http://red5.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "blindside-repos"
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[artifact](-[revision]).[ext]"
addArtifactPattern "http://blindside.googlecode.com/svn/repository/[organisation]/[artifact](-[revision]).[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "maven2-central"
m2compatible = true
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
}
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "netty-dependency"
m2compatible = true
addArtifactPattern "http://repository.jboss.org/maven2/[organisation]/[module]/[revision]/[artifact](-[revision]).[ext]"
addArtifactPattern "http://repo1.maven.org/maven2/[organisation]/[artifact]/[revision]/[artifact](-[revision]).[ext]"
}
}
flatDir name: 'fileRepo', dirs: "/home/firstuser/dev/repo"
}

dependencies {

// Logging
compile ':slf4j-api:1.5.10@jar'
compile ':logback-core:0.9.18@jar'
compile ':logback-classic:0.9.18@jar'
compile ':jcl-over-slf4j:1.5.10@jar'
compile ':log4j-over-slf4j:1.5.10@jar'

compile 'org.jboss.netty:netty:3.1.5.GA@jar'
}


uploadArchives {
uploadDescriptor = false
repositories {
add project.repositories.fileRepo
}
}

task resolveDeps(dependsOn: configurations.default.buildArtifacts, type: Copy) {
into('lib')
from configurations.default
from configurations.default.allArtifacts*.file
}

0 comments on commit 8e6354c

Please sign in to comment.