mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
RM: Latest updates to build scripts and Eclipse projects
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@34705 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
77
build.gradle
77
build.gradle
@@ -1,6 +1,7 @@
|
||||
subprojects {
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
@@ -17,63 +18,73 @@ subprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: libsDir, include: '*.jar')
|
||||
compile fileTree(dir: 'war/WEB-INF/lib', include: '*.jar')
|
||||
}
|
||||
|
||||
compileJava.doFirst {
|
||||
if (areLibsUnpacked(file(libsDir)) == false) {
|
||||
tasks.unpackLibs.execute()
|
||||
if (file('war/WEB-INF').exists() == false) {
|
||||
tasks.expandWar.execute()
|
||||
}
|
||||
}
|
||||
|
||||
task cleanLibs << {
|
||||
task cleanWar << {
|
||||
ant.delete {
|
||||
ant.fileset(dir: libsDir, includes: '*.jar')
|
||||
ant.fileset(dir: 'war', excludes: '*.war')
|
||||
}
|
||||
}
|
||||
|
||||
task refreshLibs (dependsOn: ['cleanLibs', 'unpackLibs'])
|
||||
task refreshWar (dependsOn: ['cleanWar', 'expandWar'])
|
||||
|
||||
task unpackLibs << {
|
||||
task expandWar << {
|
||||
|
||||
if (file(warFile).exists()) {
|
||||
|
||||
println 'Unpacking libs from ' + warFileName + ' WAR'
|
||||
|
||||
// unpack the jars from the war file
|
||||
ant.unzip(src: warFile, dest: libsDir) {
|
||||
ant.patternset {
|
||||
ant.include(name: '**/*.jar')
|
||||
}
|
||||
ant.mapper(type: 'flatten')
|
||||
}
|
||||
println 'Expanding ' + warFileName + ' WAR'
|
||||
ant.unzip(src: warFile, dest: 'war')
|
||||
}
|
||||
else {
|
||||
|
||||
// TODO eventually we will be able to retrieve the war file if we don't have it
|
||||
println 'The ' + warFile + ' was not found.'
|
||||
}
|
||||
}
|
||||
|
||||
// task amp << {
|
||||
//
|
||||
// ant.zip(destfile: 'build/dist/blar.amp', update: 'true') {
|
||||
//
|
||||
// ant.zipfileset(file: '../module.properties')
|
||||
// ant.zipfileset(file: 'build/libs/rm.jar', prefix: 'lib')
|
||||
// ant.zipfileset(dir: '/config', prefix: 'config') {
|
||||
// ant.exclude(name: '**/module.properties')
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
task amp << {}
|
||||
|
||||
assemble.doLast {
|
||||
tasks.amp.execute()
|
||||
}
|
||||
}
|
||||
|
||||
Boolean areLibsUnpacked(dir){
|
||||
|
||||
result = false;
|
||||
dir.eachFileMatch(~/.*\.jar/) {
|
||||
result = true;
|
||||
void assembleAmp(amp, module, jar, config, web){
|
||||
|
||||
ant.zip(destfile: amp, update: 'true') {
|
||||
|
||||
def moduleProperties = module + '/module.properties'
|
||||
def fileMapping = module + '/file-mapping.properties'
|
||||
|
||||
if (file(moduleProperties).exists() == true) {
|
||||
ant.zipfileset(file: moduleProperties)
|
||||
}
|
||||
return result;
|
||||
|
||||
if (file(fileMapping).exists() == true) {
|
||||
ant.zipfileset(file: fileMapping)
|
||||
}
|
||||
|
||||
if (jar != null) {
|
||||
ant.zipfileset(file: jar, prefix: 'lib')
|
||||
}
|
||||
|
||||
if (config != null) {
|
||||
ant.zipfileset(dir: config, prefix: 'config') {
|
||||
ant.exclude(name: '**/module.properties')
|
||||
ant.exclude(name: '**/file-mapping.properties')
|
||||
}
|
||||
}
|
||||
|
||||
if (web != null) {
|
||||
ant.zipfileset(file: web, prefix: 'web')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -1,17 +1,282 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="src" path="config"/>
|
||||
<classpathentry kind="src" path="test-resources"/>
|
||||
<classpathentry kind="src" path="source/java"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/3rd Party"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/Core"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/Repository"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/Web-Client"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/Remote API"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/MBean"/>
|
||||
<classpathentry kind="lib" path="/3rd Party/lib/spring-surf/spring-webscripts-1.0.0.jar" sourcepath="/3rd Party/src/spring-webscripts-1.0.0-sources.jar"/>
|
||||
<classpathentry kind="lib" path="/3rd Party/lib/spring-surf/spring-webscripts-1.0.0-tests.jar"/>
|
||||
<classpathentry combineaccessrules="false" kind="src" path="/DataModel"/>
|
||||
<classpathentry kind="output" path="build/classes"/>
|
||||
<classpathentry kind="src" path="config"/>
|
||||
<classpathentry kind="src" path="war/WEB-INF/classes"/>
|
||||
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/Users/royw/.gradle/caches/artifacts-8/filestore/javax.servlet/servlet-api/2.5/jar/5959582d97d8b61f4d154ca9e495aafd16726e34/servlet-api-2.5.jar" sourcepath="C:/Users/royw/.gradle/caches/artifacts-8/filestore/javax.servlet/servlet-api/2.5/source/21599814ad9a605b86f3e6381571beccd861a32/servlet-api-2.5-sources.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/Users/royw/.gradle/caches/artifacts-8/filestore/org.springframework/spring-test/2.5/jar/af084e37cf532fbdd15da44e400930d0f8fbf52f/spring-test-2.5.jar" sourcepath="C:/Users/royw/.gradle/caches/artifacts-8/filestore/org.springframework/spring-test/2.5/source/a2bbfbf1ac87047202c49c8da06bdb48eaf6ffe0/spring-test-2.5-sources.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/Users/royw/.gradle/caches/artifacts-8/filestore/commons-logging/commons-logging/1.1/jar/ba24d5de831911b684c92cd289ed5ff826271824/commons-logging-1.1.jar" sourcepath="C:/Users/royw/.gradle/caches/artifacts-8/filestore/commons-logging/commons-logging/1.1/source/5c2bd34c9a05067c72dcf08cd248630561a9c852/commons-logging-1.1-sources.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/Users/royw/.gradle/caches/artifacts-8/filestore/junit/junit/3.8.1/jar/99129f16442844f6a4a11ae22fbbee40b14d774f/junit-3.8.1.jar" sourcepath="C:/Users/royw/.gradle/caches/artifacts-8/filestore/junit/junit/3.8.1/source/525753763e53f6f76da052b316d0f2e3bfa4d73/junit-3.8.1-sources.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/abdera-client-0.4.0-incubating.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/abdera-core-0.4.0-incubating.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/abdera-extensions-json-0.4.0-incubating.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/abdera-i18n-0.4.0-incubating.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/abdera-parser-0.4.0-incubating.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/acegi-security-0.8.2_patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/activation-1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/activiti-engine-5.7.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/activiti-spring-5.7.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/addressing-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-community-rm-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-core-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-data-model-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-deployment-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-jlan-embed-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-mbeans-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-opencmis-extension-0.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-remote-api-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-repository-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-wdr-deployment.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-web-client-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/alfresco-web-framework-commons-4.0.d.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/ant-1.7.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/antlr-3.3-complete.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/aopalliance.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/apache-mime4j-0.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/apache-solr-solrj-1.4.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/asm-3.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/avalon-framework-4.2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/axiom-api-1.2.5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/axiom-impl-1.2.5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/axis-1.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/batik-all-1.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/bcel.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/bcmail-jdk15-1.45.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/bcprov-jdk15-1.45.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/bliki-3.0.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/boilerpipe-1.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/bsf-2.4.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/bsh-1.3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/cglib-2.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-abdera-0.1-incubating-SNAPSHOT.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-client-api-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-client-bindings-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-client-impl-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-commons-api-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-commons-impl-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-server-bindings-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-server-support-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-test-browser-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-opencmis-test-tck-0.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chemistry-tck-atompub-0.1-incubating-SNAPSHOT.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/chiba-1.3.0-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-beanutils-1.7.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-codec-1.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-collections-3.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-compress-1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-csv-20110211.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-dbcp-1.4-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-digester-1.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-discovery-0.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-el.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-fileupload-1.2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-httpclient-3.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-io-1.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-jxpath-1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-lang-2.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-logging-1.1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-modeler.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-net-2.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-pool-1.5.5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/commons-validator-1.4.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/concurrentlinkedhashmap-lru-1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/cxf-2.2.2-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/dom4j-1.6.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/drew-image-metadata-extractor-2.4.0-beta-1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/ehcache-core-2.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/facebook_070716.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/FastInfoset-1.2.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/fontbox-1.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/fop-0.94.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/freemarker-2.3.18-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-analytics-2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-analytics-meta-2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-appsforyourdomain-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-appsforyourdomain-meta-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-base-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-blogger-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-blogger-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-books-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-books-meta-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-calendar-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-calendar-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-client-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-client-meta-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-codesearch-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-codesearch-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-contacts-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-contacts-meta-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-core-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-docs-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-docs-meta-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-finance-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-finance-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-gtt-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-gtt-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-health-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-health-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-maps-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-maps-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-media-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-photos-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-photos-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-projecthosting-2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-projecthosting-meta-2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-sidewiki-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-sidewiki-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-sites-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-sites-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-spreadsheet-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-spreadsheet-meta-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-webmastertools-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-webmastertools-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-youtube-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/gdata-youtube-meta-2.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/geronimo-activation_1.1_spec-1.0.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/geronimo-annotation_1.0_spec-1.1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/geronimo-jaxws_2.1_spec-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/geronimo-stax-api_1.0_spec-1.0.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/geronimo-ws-metadata_2.0_spec-1.1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/google-collect-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/greenmail-1.3-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/groovy-1.7.5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/guessencoding-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/hazelcast-1.9.4.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/hazelcast-spring-1.9.4.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/hibernate-3.2.6-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/hrtlib.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/htmlparser-1.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/httpclient-4.1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/httpclient-cache-4.1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/httpcore-4.1.3.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/icu4j_3_6_1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/isoparser-1.0-beta-5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jackson-core-asl-1.8.3.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jackson-mapper-asl-1.8.3.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jakarta-oro-2.0.8.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/javassist-3.6.0.GA.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxb-api-2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxb-impl-2.1.11.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxb-xjc-2.1.7.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxen-1.1-beta-8.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxrpc.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxws-api-2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jaxws-rt-2.1.7.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jbpm-identity-3.3.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jbpm-jpdl-3.3.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jcr-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jempbox-1.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jgroups-2.11.1.Final.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jibx-bind.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jibx-run.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jid3lib-0.5.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/JMagick.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/joda-time-1.2.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jooconverter-2.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/JSlideShare-0.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/json-simple-1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/json.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jsr107cache-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jsr181-api-1.0-MR1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jsr250-api-1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jstl-1.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jta.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jtds-1.2.5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jug-asl-2.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/junit-4.8.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jut.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/jutf7-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/livetribe-jsr223-2.0.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/log4j-1.2.15.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/lucene-analyzers-2.4.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/lucene-core-2.4.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/lucene-regex-2.4.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/lucene-snowball-2.4.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/mail.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/mimepull-1.3.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/mockito-all-1.8.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/mybatis-3.0.4-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/mybatis-spring-1.0.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/myfaces-api-1.1.8.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/myfaces-impl-1.1.8.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/neethi-2.0.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/netcdf-4.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/odmg-3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/ooxml-schemas-1.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/openoffice-juh-3.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/openoffice-jurt-3.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/openoffice-ridl-3.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/openoffice-sandbox-2.0.3.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/openoffice-unoil-3.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/opensaml-1.0.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.aop-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.asm-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.beans-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.context-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.context.support-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.core-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.expression-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.jdbc-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.orm-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.transaction-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.web-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/org.springframework.web.servlet-3.0.5.RELEASE.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/pdfbox-1.6.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/PDFRenderer-0.9.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/poi-3.8-beta6-20120124.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/poi-ooxml-3.8-beta6-20120124.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/poi-scratchpad-3.8-beta6-20120124.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/quartz-1.8.3-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/resolver-20050927.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/rhino-js-1.6R7.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/rome-0.9.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/saxpath.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/scannotation-1.0.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/shale-test-1.0.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/slf4j-api-1.5.11.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/slf4j-log4j12-1.5.11.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-cmis-framework-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-security-core-3.1.0.RC2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-core-1.0.0.RC1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-facebook-1.0.0.RC1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-facebook-web-1.0.0.RC1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-linkedin-1.0.0.BUILD-SNAPSHOT.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-test-1.0.0.RC1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-twitter-1.0.0.RC1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-social-web-1.0.0.RC1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-surf-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-surf-api-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-surf-core-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-surf-core-configservice-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-webscripts-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/spring-webscripts-api-1.0.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/springmodules-jbpm31.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/standard.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/stax-api-1.0.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/stax-ex-1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/stax-utils-20060502.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/streambuffer-0.9.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/subethasmtp-3.1.6.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/tagsoup-1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/tika-core-1.1-20120208.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/tika-parsers-1.1-20120208.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/truezip.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/urlrewritefilter-3.1.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/vorbis-java-core-0.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/vorbis-java-tika-0.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/wsdl4j-1.6.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/wss4j-1.5.4-patched.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/wstx-asl-3.2.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xercesImpl-2.8.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xml-resolver-1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xmlbeans-2.3.0.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xmlgraphics-commons-1.2.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xmlrpc.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/XmlSchema-1.4.5.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xmlsec-1.4.1.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xpp3-1.1.3_8.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="C:/mywork/projects/rmhead/code/rm-server/war/WEB-INF/lib/xstream-1.2.2.jar"/>
|
||||
<classpathentry kind="lib" path="libs/spring-webscripts-1.0.0-tests.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
@@ -1,17 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Records Management</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<name>rm-server</name>
|
||||
<comment/>
|
||||
<projects/>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments/>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<linkedResources/>
|
||||
</projectDescription>
|
||||
|
12
rm-server/.settings/org.eclipse.jdt.core.prefs
Normal file
12
rm-server/.settings/org.eclipse.jdt.core.prefs
Normal file
@@ -0,0 +1,12 @@
|
||||
#Fri Mar 23 15:41:37 EST 2012
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
||||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
||||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.source=1.6
|
Binary file not shown.
@@ -230,6 +230,7 @@ public class RMEntryVoter extends RMSecurityCommon
|
||||
return Collections.unmodifiableSet(protectedAspects);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public int vote(Authentication authentication, Object object, ConfigAttributeDefinition config)
|
||||
{
|
||||
if (logger.isDebugEnabled())
|
||||
@@ -365,6 +366,7 @@ public class RMEntryVoter extends RMSecurityCommon
|
||||
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private static QName getType(NodeService nodeService, MethodInvocation invocation, Class[] params, int position, boolean parent)
|
||||
{
|
||||
if (QName.class.isAssignableFrom(params[position]))
|
||||
@@ -387,6 +389,7 @@ public class RMEntryVoter extends RMSecurityCommon
|
||||
return null;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private static QName getQName(MethodInvocation invocation, Class[] params, int position)
|
||||
{
|
||||
if (QName.class.isAssignableFrom(params[position]))
|
||||
@@ -400,6 +403,7 @@ public class RMEntryVoter extends RMSecurityCommon
|
||||
throw new ACLEntryVoterException("Unknown type");
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private static Serializable getProperty(MethodInvocation invocation, Class[] params, int position)
|
||||
{
|
||||
if (invocation.getArguments()[position] == null)
|
||||
|
Reference in New Issue
Block a user