Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
WEB-281 - Setup for Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
cfalzone committed Feb 20, 2015
1 parent 3d17242 commit edacbb0
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 22 deletions.
50 changes: 28 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
apply plugin: 'war'
apply plugin: 'osgi'
apply plugin: 'eclipse'
apply plugin: 'propdeps'
apply plugin: 'propdeps-maven'
apply plugin: 'propdeps-eclipse'

sourceCompatibility = '1.7'
version = '0.1'

repositories {
mavenCentral()
maven {
url "http://repo.dotcms.com/artifactory/libs-release"
}
maven { url "http://repo.dotcms.com/artifactory/libs-release" }
}

dependencies {
compile (group: 'com.dotcms', name: 'dotcms', version: '2.5.3'){
transitive = true
}
providedCompile "javax.servlet:servlet-api:2.5"
compile('com.dotcms:dotcms:2.5.3') { transitive = true }
provided('javax.servlet:servlet-api:2.5')
compile fileTree(dir: 'src/main/resources/lib', include: '*.jar')
}

buildscript {
repositories {
maven { url 'http://repo.spring.io/plugins-release' }
}
dependencies {
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
}
}

jar {
manifest {
name = 'Aquent GPlus Auth'
Expand All @@ -30,19 +36,19 @@ jar {
instruction 'Bundle-Activator', 'com.aquent.dotcms.plugins.gplusauth.GPlusAuthActivator'
instruction 'Bundle-ClassPath', '.',
'lib/google-api-client-1.17.0-rc.jar',
'lib/google-api-client-appengine-1.17.0-rc.jar',
'lib/google-api-client-servlet-1.17.0-rc.jar',
'lib/google-http-client-1.17.0-rc.jar',
'lib/google-http-client-appengine-1.17.0-rc.jar',
'lib/google-http-client-jackson-1.17.0-rc.jar',
'lib/google-oauth-client-1.17.0-rc.jar',
'lib/google-oauth-client-appengine-1.17.0-rc.jar',
'lib/google-oauth-client-servlet-1.17.0-rc.jar'
instruction 'DynamicImport-Package', '*'
instruction 'Import-Package',
'!com.google.api.*',
'*;version=0'
instruction 'Export-Package', '*;version=0'
'lib/google-api-client-appengine-1.17.0-rc.jar',
'lib/google-api-client-servlet-1.17.0-rc.jar',
'lib/google-http-client-1.17.0-rc.jar',
'lib/google-http-client-appengine-1.17.0-rc.jar',
'lib/google-http-client-jackson-1.17.0-rc.jar',
'lib/google-oauth-client-1.17.0-rc.jar',
'lib/google-oauth-client-appengine-1.17.0-rc.jar',
'lib/google-oauth-client-servlet-1.17.0-rc.jar'
instruction 'DynamicImport-Package', '*'
instruction 'Import-Package',
'!com.google.api.*',
'*;version=0'
instruction 'Export-Package', '*;version=0'
}
}

Binary file not shown.
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
group: com.aquent
version: 1.0.0
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = "dotcms-plugins-gplusauth"

0 comments on commit edacbb0

Please sign in to comment.