Skip to content

Commit

Permalink
Try using gradle.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Haberman committed Sep 1, 2014
1 parent aa2f681 commit f45638a
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .classpath
Expand Up @@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?project=pageobjects&amp;ivyXmlPath=ivy.xml&amp;confs=*&amp;ivySettingsPath=%24%7Bworkspace_loc%3Apageobjects%2Fivysettings.xml%7D&amp;loadSettingsOnDemand=false&amp;ivyUserDir=&amp;propertyFiles="/>
<classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/>
<classpathentry kind="output" path="target/eclipse"/>
</classpath>
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,2 +1,4 @@
target
lib
build/
.gradle/
2 changes: 1 addition & 1 deletion .project
Expand Up @@ -12,7 +12,7 @@
</buildCommand>
</buildSpec>
<natures>
<nature>org.springsource.ide.eclipse.gradle.core.nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.apache.ivyde.eclipse.ivynature</nature>
</natures>
</projectDescription>
@@ -0,0 +1,4 @@
#org.springsource.ide.eclipse.gradle.core.preferences.GradleProjectPreferences
#Sat Aug 30 23:31:31 CDT 2014
org.springsource.ide.eclipse.gradle.linkedresources=
org.springsource.ide.eclipse.gradle.rootprojectloc=
32 changes: 32 additions & 0 deletions build.gradle
@@ -0,0 +1,32 @@

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'

group = 'com.bizo'
version = System.getProperty('version', 'SNAPSHOT')
sourceCompatibility = '1.6'
targetCompatibility = '1.6'

configurations {
deployerJars
}

repositories {
mavenCentral()
}

dependencies {
compile 'org.seleniumhq.selenium:selenium-java:2.37.0'
compile 'junit:junit:4.8.1'
deployerJars 'org.apache.maven.wagon:wagon-ssh-external:2.3'
}

uploadArchives {
repositories.mavenDeployer {
configuration = configurations.deployerJars
repository(url: 'scpexe://repo.joist.ws/var/www/joist.repo') {
authentication(userName: 'root')
}
}
}

0 comments on commit f45638a

Please sign in to comment.