diff --git a/.checkstyle b/.checkstyle
deleted file mode 100644
index 58e2377c2..000000000
--- a/.checkstyle
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
%PRETTYPRINTHINT%
', '') + .replaceAll(/\b(commit)(\s*[#]?|-){0,1}([0-9a-fA-F]{5,})\b/, + 'commit $3') + .replaceAll(/\b(issue)(\s*[#]?|-){0,1}(\d+)\b/, + 'issue $3') + .replaceAll(/\b(pr|pull request)(\s*[#]?|-){0,1}(\d+)\b/, + 'pull request #$3') + .replaceAll(/\b(ticket)(\s*[#]?|-){0,1}(\d+)\b/, + 'ticket $3') + //fix a markdown conversion bug + .replace('https://github.com/github/git-lfs/blob/master/docs/spec.html', + 'https://github.com/github/git-lfs/blob/master/docs/spec.md') + details.file.setText(headerText + newText + footerText, 'UTF-8') + } + } + + from (generateScreenshotThumbnails) { + into 'thumbs' + } + + //extra image files from src/main/resources + from ('src/main/resources') { + include 'arrow_page.png', 'blank.png', 'book_16x16.png', 'bug_16x16.png', 'cold_16x16.png', + 'federated_16x16.png', 'gitblt_25_white.png', 'gitblt-favicon.png', 'lock_go_16x16.png', + 'lock_pull_16x16.png', 'shield_16x16.png' + } +} + +task prepareDataDirectory(type: Copy) { + description = 'Create a pristine data directory for the target build' + group = 'build Gitblit jars' + + into "$buildDir/data" + + from ("$sourceDistribDir/data") { + include 'defaults.properties', 'gitblit.properties', 'projects.conf', 'users.conf' + duplicatesStrategy 'exclude' + } + + from ("$sourceDistribDir/data/git") { + include 'project.mkd' + into 'git' + duplicatesStrategy 'exclude' + } + + from ("$sourceDistribDir/data/groovy") { + include 'blockpush.groovy', + 'fisheye.groovy', + 'fogbugz.groovy', + 'jenkins.groovy', + 'localclone.groovy', + 'protect-refs.groovy', + 'redmine-fetch.groovy', + 'sendmail.groovy', + 'sendmail-html.groovy', + 'subgit.groovy', + 'thebuggenie.groovy' + into 'groovy' + duplicatesStrategy 'include' + } + + from ("$sourceDistribDir/data/gitignore") { + include "*.gitignore" + into 'gitignore' + duplicatesStrategy 'include' + } +} + +task jarForGitblitWar(type: Jar) { + description = "Building Gitblit jar for WAR package" + group = 'build Gitblit jars' + + from sourceSets.main.output + + manifest { + attributes( + 'Implementation-Title': project.description ?: project.name, + 'Implementation-Version': version, + 'Created-By': 'Gradle ' + getGradle().getGradleVersion(), + 'Build-Date': snapshotDate, + 'Build-Jdk': System.getProperty('java.version') + ) + } +} + +task jarForGitblitGO(type: Jar) { + description = "Building Gitblit jar for GO package" + group = 'build Gitblit jars' + + archiveName = 'gitblit.jar' + + manifest { + attributes( + 'Implementation-Title': project.description ?: project.name, + 'Implementation-Version': version, + 'Created-By': 'Gradle ' + getGradle().getGradleVersion(), + 'Build-Date': snapshotDate, + 'Build-Jdk': System.getProperty('java.version'), + 'Launcher-Agent-Class': 'com.gitblit.Agent', + 'Agent-Class': 'com.gitblit.Agent', + 'Premain-Class': 'com.gitblit.Agent', + 'Main-Class': 'com.gitblit.Launcher' + ) + } + + from sourceSets.main.output + + //copy the web.xml from the prototype web.xml + from ('src/main/java') { + include "WEB-INF/**" + filter { String line -> + line.replace("@gb.version@", "$version") + } + filteringCharset = 'UTF-8' + } + + //add resource file-sets to the root of the archive + from ('src/main/resources') { + exclude "*.mkd" + } +} + +task copyManagerDependencyClasses(type: com.gitblit.gradle.ClassDependencyCopier) { + description = "Copying Gitblit Manager's dependency classes (of com.gitblit namespace)" + group = 'build Gitblit jars' + + dependsOn compileJava + + classNames = [ "com.gitblit.client.GitblitManagerLauncher", + "com.gitblit.Keys" + ] + filteredPackages = ['com.gitblit', 'com.syntevo'] + classesDir = sourceSets.main.java.outputDir + outputDir = file("$tmpBuildDir/gitblitManagerClasses") +} + +task copyFedClientDependencyClasses(type: com.gitblit.gradle.ClassDependencyCopier) { + description = "Copying Gitblit Federation Client's dependency classes (of com.gitblit namespace)" + group = 'build Gitblit jars' + + dependsOn compileJava + + classNames = [ "com.gitblit.FederationClientLauncher", + "com.gitblit.Keys", + "com.gitblit.models.Menu" + ] + filteredPackages = ['com.gitblit', 'com.syntevo'] + classesDir = sourceSets.main.java.outputDir + outputDir = file("$tmpBuildDir/fedClientClasses") +} + +task copyGitblitApiDependencyClasses(type: com.gitblit.gradle.ClassDependencyCopier) { + description = "Copying Gitblit API's dependency classes (of com.gitblit namespace)" + group = 'build Gitblit jars' + + dependsOn compileJava + + classNames = [ "com.gitblit.client.GitblitClient", + "com.gitblit.Keys" + ] + filteredPackages = ['com.gitblit', 'com.syntevo'] + classesDir = sourceSets.main.java.outputDir + outputDir = file("$tmpBuildDir/gitblitApiClasses") +} + +task jarGitblitManager(type: Jar) { + description = "Building Gitblit manager.jar" + group = 'build Gitblit jars' + + archiveName = 'manager.jar' + includeEmptyDirs = false + + manifest { + attributes( + 'Implementation-Title': project.description ?: project.name, + 'Implementation-Version': version, + 'Created-By': 'Gradle ' + getGradle().getGradleVersion(), + 'Build-Date': snapshotDate, + 'Build-Jdk': System.getProperty('java.version'), + 'Launcher-Agent-Class': 'com.gitblit.Agent', + 'Agent-Class': 'com.gitblit.Agent', + 'Premain-Class': 'com.gitblit.Agent', + 'Main-Class': 'com.gitblit.client.GitblitManagerLauncher', + 'SplashScreen-Image': 'splash.png' + ) + } + + from (copyManagerDependencyClasses) + + from fileTree('src/main/java') { + include 'com/gitblit/client/splash.png' + //include all translations + include "com/gitblit/wicket/*.properties" + }.files + + from ('src/main/resources') { + include 'blank.png', + 'book_16x16.png', + 'bug_16x16.png', + 'bullet_feed.png', + 'cold_16x16.png', + 'commit_changes_16x16.png', + 'commit_divide_16x16.png', + 'commit_merge_16x16.png', + 'federated_16x16.png', + 'feed_16x16.png', + 'gitblt-favicon.png', + 'gitweb-favicon.png', + 'git-orange-16x16.png', + 'health_16x16.png', + 'lock_go_16x16.png', + 'lock_pull_16x16.png', + 'mirror_16x16.png', + 'search-icon.png', + 'settings_16x16.png', + 'shield_16x16.png', + 'star_16x16.png', + 'user_16x16.png', + 'users_16x16.png' + } +} + +task jarFederationClient(type: Jar) { + description = "Building Gitblit fedclient.jar" + group = 'build Gitblit jars' + + archiveName = 'fedclient.jar' + includeEmptyDirs = false + + manifest { + attributes( + 'Implementation-Title': project.description ?: project.name, + 'Implementation-Version': version, + 'Created-By': 'Gradle ' + getGradle().getGradleVersion(), + 'Build-Date': snapshotDate, + 'Build-Jdk': System.getProperty('java.version'), + 'Launcher-Agent-Class': 'com.gitblit.Agent', + 'Agent-Class': 'com.gitblit.Agent', + 'Premain-Class': 'com.gitblit.Agent', + 'Main-Class': 'com.gitblit.FederationClientLauncher' + ) + } + + from (copyFedClientDependencyClasses) { + exclude "com/gitblit/wicket/**" + } + + from (sourceSets.main.resources) { + exclude "**/*.html", "**/*.mkd", "**/*.md", "**/*.css", "com/gitblit/wicket/**" + } + + from ("$projectDir") { + include 'LICENSE' + } +} + +task jarGitblitApiClasses(type: Jar) { + description = "Building Gitblit API $version" + group = 'build Gitblit jars' + + archiveBaseName = 'gbapi' + includeEmptyDirs = false + + manifest { + attributes( + 'Implementation-Title': project.description ?: project.name, + 'Implementation-Version': version, + 'Created-By': 'Gradle ' + getGradle().getGradleVersion(), + 'Build-Date': snapshotDate, + 'Build-Jdk': System.getProperty('java.version'), + //'Main-Class': 'com.gitblit.client.GitblitClient' + ) + } + + from (copyGitblitApiDependencyClasses) +} + +war { + description = "Building Gitblit WAR $version" + group = 'build Gitblit distributions' + + //override the default destination directory (build/libs) + destinationDirectory = file("$buildDir/$distsDirName") + + //add file-sets to the root of the archive + from ('src/main/resources') { + exclude "*.mkd" + } + + //don't include the class files of main's sourceSet; + //instead, they would be in the output jar of the jarForGitblitWar task + //(to be included in WEB-INF/lib) + classpath = classpath - sourceSets.main.output + + //add file-sets to the WEB-INF dir + webInf { + //dependency libraries are automatically included in 'lib' dir by default; + //also include the jarForGitblitWar task's output in 'lib' dir + //(and thus implicit dependence on the jarForGitblitWar task) + from (jarForGitblitWar) { + into 'lib' + } + + from ("$projectDir") { + include 'LICENSE', 'NOTICE' + } + + //build the WAR web.xml from the prototype web.xml + from ('src/main/java/WEB-INF') { + filter { String line -> + line.replace("@gb.version@", "$version") + } + filteringCharset = 'UTF-8' + } + + from (prepareDataDirectory) { + into 'data' + } + + //are the site docs needed in the WAR package? + //from (buildSite) { + // into 'docs' + //} + } +} + +//Create GitblitGO Windows Zip deployment +task zipGitblitGOWindows(type: Zip) { + description = "Building Gitblit GO $version for Windows" + group = 'build Gitblit distributions' + + def folder = archivesBaseName + '-' + version + + into folder + + //include the jarForGitblitGO task's output + //(and therefore implicit dependence on the jarForGitblitGO task) + from (jarForGitblitGO) + + //Windows distrib files + from ("$sourceDistribDir/win") { + exclude 'fedclient.cmd', 'manager.cmd' + } + + //LICENSE and NOTICE + from ("$projectDir") { + include 'LICENSE', 'NOTICE' + } + from ('src/main/java/com/gitblit/client/splash.png') + + //dependency libraries + from (configurations.compileClasspath) { + into 'ext' + } + + from (prepareDataDirectory) { + into 'data' + } + + //Gitblit Authority data + from ("$sourceDistribDir/data") { + include "certs/**" + into 'data' + } + + from (buildSite) { + into 'docs' + } +} + +//Create GitblitGO Linux/OSX tar.gz deployment +task tarGitblitGOLinux(type: Tar) { + description = "Building Gitblit GO $version for Linux/OSX" + group = 'build Gitblit distributions' + + compression = Compression.GZIP + archiveExtension = 'tar.gz' + def folder = archivesBaseName + '-' + version + + into folder + + //include the jarForGitblitGO task's output + //(and therefore implicit dependence on the jarForGitblitGO task) + from (jarForGitblitGO) + + //Linux/OSX distrib files + from ("$sourceDistribDir/linux") { + exclude 'fedclient.sh', 'manager.sh' + fileMode = 755 + } + + //LICENSE and NOTICE + from ("$projectDir") { + include 'LICENSE', 'NOTICE' + } + from ('src/main/java/com/gitblit/client/splash.png') + + //dependency libraries + from (configurations.compileClasspath) { + into 'ext' + } + + from (prepareDataDirectory) { + into 'data' + } + + //Gitblit Authority data + from ("$sourceDistribDir/data") { + include "certs/**" + into 'data' + } + + from (buildSite) { + into 'docs' + } +} + +//Build the stand-alone, Gitblit Manager +task zipGitblitManager(type: Zip) { + description = "Building Gitblit Manager $version" + group = 'build Gitblit distributions' + + archiveBaseName = 'manager' + + from (jarGitblitManager) + + from ("$projectDir") { + include 'LICENSE', 'NOTICE' + } + + from ("$sourceDistribDir/win") { + include 'manager.cmd' + } + from ("$sourceDistribDir/linux") { + include 'manager.sh' + } + + //dependency libraries + from (configurations.compileClasspath) { + into 'ext' + //hard-code the libraries' names and versions for now + //(TODO: they will be specified as dependencies in the manager's own subproject later, + //and thus they won't be specified explicitly as hard-coded includes like here) + include 'commons-logging-1.1.3.jar', "gson-${gsonVersion}.jar", 'httpclient-4.3.6.jar', + 'httpcore-4.3.3.jar', 'JavaEWAH-0.7.9.jar', + "javax.activation-${activationVersion}.jar", 'jdom-1.0.jar', 'jsch-0.1.53.jar', + "log4j-${log4jVersion}.jar", "org.eclipse.jgit.http.server-${jgitVersion}.jar", + "org.eclipse.jgit-${jgitVersion}.jar", "rome-${romeVersion}.jar", + "slf4j-api-${slf4jVersion}.jar", "slf4j-log4j12-${slf4jVersion}.jar" + } +} + +//Build the stand-alone, command-line Gitblit Federation Client +task zipFederationClient(type: Zip) { + description = "Building Gitblit Federation Client $version" + group = 'build Gitblit distributions' + + archiveBaseName = 'fedclient' + + from (jarFederationClient) + + from ("$projectDir") { + include 'LICENSE', 'NOTICE' + } + + from fileTree("$sourceDistribDir") { + include 'federation.properties' + include 'linux/fedclient.sh' + include 'win/fedclient.cmd' + }.files + + //dependency libraries + from (configurations.compileClasspath) { + into 'ext' + //hard-code the libraries' names and versions for now + //(TODO: they will be specified as dependencies in the fedclient's own subproject later, + //and thus they won't be specified explicitly as hard-coded includes like here) + include 'aopalliance-1.0.jar', "args4j-${args4jVersion}.jar", 'commons-logging-1.1.3.jar', + "gson-${gsonVersion}.jar", "guava-${guavaVersion}.jar", "guice-${guiceVersion}.jar", + 'httpclient-4.3.6.jar', 'httpcore-4.3.3.jar', 'JavaEWAH-0.7.9.jar', + "javax.activation-${activationVersion}.jar", 'javax.inject-1.jar', + "javax.servlet-api-${servletApiVersion}.jar", 'jsch-0.1.53.jar', + "log4j-${log4jVersion}.jar", "lucene-analyzers-common-${luceneVersion}.jar", + "lucene-core-${luceneVersion}.jar", "lucene-highlighter-${luceneVersion}.jar", + "lucene-memory-${luceneVersion}.jar", "lucene-queries-${luceneVersion}.jar", + "lucene-queryparser-${luceneVersion}.jar", "lucene-sandbox-${luceneVersion}.jar", + "org.eclipse.jgit-${jgitVersion}.jar", "slf4j-api-${slf4jVersion}.jar", + "slf4j-log4j12-${slf4jVersion}.jar" + } +} + +task jarGitblitApiSources(type: Jar) { + description = "Building Gitblit API $version sources" + group = 'build Gitblit jars' + + archiveName = 'gbapi-' + version + '-sources.jar' + from ('src/main/java') { + include "com/gitblit/Constants.java", + "com/gitblit/GitBlitException.java", + "com/gitblit/Keys.java", + "com/gitblit/client/**/*.java", + "com/gitblit/models/**/*.java", + "com/gitblit/utils/**/*.java" + } +} + +task javadocGitblitApiSources(type: Javadoc) { + description = "Building Gitblit API $version javadocs" + group = 'documentation' + + classpath = sourceSets.main.compileClasspath + sourceSets.main.output + destinationDir = file("$tmpBuildDir/apiJavadocs") + + source files('src/main/java') { + include "com/gitblit/Constants.java", + "com/gitblit/GitBlitException.java", + "com/gitblit/Keys.java", + "com/gitblit/client/**/*.java", + "com/gitblit/models/**/*.java", + "com/gitblit/utils/**/*.java" + } + + options.encoding = "UTF-8" + //turn off doclint errors/warnings output (but some warnings are still output) + options.addStringOption('Xdoclint:none', '-quiet') + //don't fail the task if errors occur + failOnError = false +} + +task jarGitblitApiJavadocs(type: Jar) { + description = "Building Gitblit API $version javadoc jar" + group = 'documentation' + + archiveName = 'gbapi-' + version + '-javadoc.jar' + from (javadocGitblitApiSources) +} + +task runGO(type: JavaExec) { + description = 'Run Gitblit GO' + group = 'Run' + + workingDir = projectDir + //append the 'run' directory's files to the main's classpath + classpath sourceSets.main.compileClasspath, copyToRunDir + main = 'com.gitblit.GitBlitServer' + //Gitblit server will listen on https port 8443 for web UI connection +// args '--baseFolder', 'data' +///* or, use same args as those of the Gitblit server instance during serverTest run: + args '--httpPort', '8280', + '--httpsPort', '0', + '--shutdownPort', '8281', + '--gitPort', '8300', + '--sshPort', '39418', + '--repositoriesFolder', file('data/git').getAbsolutePath(), + '--userService', file('src/test/config/test-users.conf').getAbsolutePath(), + '--settings', file('src/test/config/test-gitblit.properties').getAbsolutePath(), + '--baseFolder', file('data').getAbsolutePath() +//*/ +} + +task buildApiLibrary(type: Zip) { + description = "Build the Gitblit API client library $version" + group = 'build Gitblit distributions' + + archiveBaseName = 'gbapi' + from (jarGitblitApiClasses) + from (jarGitblitApiSources) + from (jarGitblitApiJavadocs) + from ("$projectDir") { + include 'LICENSE', 'NOTICE' + } + //dependency libraries + from (configurations.compileClasspath) { + into 'ext' + //hard-code the libraries' names and versions for now + include "gson-${gsonVersion}.jar", 'jdom-1.0.jar', "rome-${romeVersion}.jar" + } +} + +task buildGO { + description = "Building Gitblit GO $version distributions" + group = 'build Gitblit distributions' + dependsOn zipGitblitGOWindows, tarGitblitGOLinux + //...and the resulting distributions will be in the default build/distributions directory. +} + +//Build all binaries and site +task buildAll { + description = "Building all Gitblit $version artefacts" + group = 'build Gitblit distributions' + dependsOn buildSite, war, buildGO, zipGitblitManager, zipFederationClient, buildApiLibrary + //...and the resulting distributions will be in the default build/distributions directory. +} + diff --git a/build.moxie b/build.moxie deleted file mode 100644 index bb0d426e7..000000000 --- a/build.moxie +++ /dev/null @@ -1,196 +0,0 @@ -# -# Gitblit project descriptor -# - -# Specify minimum Moxie version required to build -requires: 0.9.4 - -# Project Metadata -name: Gitblit -description: pure Java Git solution -groupId: com.gitblit -artifactId: gitblit -version: 1.9.2-SNAPSHOT -inceptionYear: 2011 - -# Current stable release -releaseVersion: 1.9.1 -releaseDate: 2020-04-05 - -# Project urls -url: 'http://gitblit.com' -issuesUrl: 'https://github.com/gitblit/gitblit' -socialNetworkUrl: 'https://plus.google.com/114464678392593421684' -forumUrl: 'http://groups.google.com/group/gitblit' -mavenUrl: 'http://gitblit.github.io/gitblit-maven' - -# Licenses section included for POM generation -licenses: -- { - name: Apache ASL v2.0 - url: 'http://www.apache.org/licenses/LICENSE-2.0.html' - } - -# Developers section included for POM generation -developers: -- { - id: james - name: James Moger - url: 'https://plus.google.com/u/0/116428776452027956920' - organization: VAS - organizationUrl: 'http://www.vas.com' - roles: developer - } - -# SCM section included for POM generation -scm: { - connection: 'scm:git:git://github.com/gitblit/gitblit.git' - developerConnection: 'scm:git:https://github.com/gitblit/gitblit.git' - url: 'https://github.com/gitblit/gitblit' - tag: HEAD - } - -# Mainclass is used for setting jar manifests and using the mx:run target -mainclass: com.gitblit.GitBlitServer - -# Moxie supports multiple source directories and allows you to assign -# a scope to each directory. -sourceDirectories: -- compile 'src/main/java' -- compile 'src/main/bugtraq' -- compile 'src/main/gen' apt -- test 'src/test/java' -- test 'src/test/bugtraq' -# Moxie supports one site-scoped directory for mx:doc -- site 'src/site' - -resourceDirectories: -- compile 'src/main/resources' -- test 'src/test/resources' -- site 'src/site/resources' - -# compile for Java 7 class format -tasks: { - 'mx:javac' : { - source: 1.7 - target: 1.7 - compiler: javac1.7 - encoding: UTF-8 - # stop complaints about bootstrap classpath when compiling with Java 7 - compilerArgs: '-Xlint:-options' - } -} - -# Generate Eclipse project files. -# Generate IntelliJ IDEA module files. -# Generate a distribution Maven POM (not suitable for building with Maven). -apply: eclipse, intellij, pom - -# Copy all retrieved dependencies to the "ext" directory. -# Generated IDE settings (.classpath, etc) will use the artifacts -# from this project-relative directory. This allows the IDE settings -# to be version-controlled and shared. -dependencyDirectory: ext - -# Register the Eclipse JGit Maven repositories -registeredRepositories: -- { id: central, url: 'https://repo1.maven.org/maven2' } -- { id: mavencentral, url: 'https://repo1.maven.org/maven2' } -- { id: eclipse, url: 'https://repo.eclipse.org/content/groups/releases' } -- { id: eclipse-snapshots, url: 'https://repo.eclipse.org/content/groups/snapshots' } -- { id: gitblit, url: 'http://gitblit.github.io/gitblit-maven' } - -# Source all dependencies from the following repositories in the specified order -repositories: central, eclipse-snapshots, eclipse, gitblit - -# Convenience properties for dependencies -properties: { - jetty.version : 9.2.13.v20150730 - slf4j.version : 1.7.29 - wicket.version : 1.4.22 - lucene.version : 5.5.2 - jgit.version : 4.5.7.201904151645-r - groovy.version : 2.4.4 - bouncycastle.version : 1.57 - selenium.version : 2.28.0 - wikitext.version : 1.4 - sshd.version: 1.2.0 - mina.version: 2.0.21 - guice.version : 4.0 - # Gitblit maintains a fork of guice-servlet - guice-servlet.version : 4.0-gb2 - } - -# Dependencies -# -# May be tagged with ":label" notation to group dependencies. -# -# "@extension" fetches the artifact with the specified extension -# and ignores all transitive dependencies. -# -# "!groupId" or "!groupId:artifactId" excludes all matching transitive -# dependencies in that dependency's dependency graph. -# - -dependencies: -- compile 'com.google.inject:guice:${guice.version}' :war :fedclient -- compile 'com.google.inject.extensions:guice-servlet:${guice-servlet.version}' :war -- compile 'com.google.guava:guava:18.0' :war :fedclient -- compile 'com.intellij:annotations:12.0' :war -- compile 'log4j:log4j:1.2.17' :war :fedclient :manager -- compile 'org.slf4j:slf4j-api:${slf4j.version}' :war :fedclient :manager -- compile 'org.slf4j:slf4j-log4j12:${slf4j.version}' :war :fedclient :manager -- compile 'com.sun.mail:javax.mail:1.5.1' :war -- compile 'javax.servlet:javax.servlet-api:3.1.0' :fedclient -- compile 'org.eclipse.jetty.aggregate:jetty-all:${jetty.version}' @jar -- compile 'org.apache.wicket:wicket:${wicket.version}' :war !org.mockito -- compile 'org.apache.wicket:wicket-auth-roles:${wicket.version}' :war !org.mockito -- compile 'org.apache.wicket:wicket-extensions:${wicket.version}' :war !org.mockito -- compile 'org.apache.lucene:lucene-core:${lucene.version}' :war :fedclient -- compile 'org.apache.lucene:lucene-analyzers-common:${lucene.version}' :war :fedclient -- compile 'org.apache.lucene:lucene-highlighter:${lucene.version}' :war :fedclient !org.apache.lucene:lucene-join -- compile 'org.apache.lucene:lucene-memory:${lucene.version}' :war :fedclient -- compile 'org.apache.lucene:lucene-queryparser:${lucene.version}' :war :fedclient !org.apache.lucene:lucene-spatial -- compile 'org.pegdown:pegdown:1.5.0' :war -- compile 'org.fusesource.wikitext:wikitext-core:${wikitext.version}' :war -- compile 'org.fusesource.wikitext:twiki-core:${wikitext.version}' :war -- compile 'org.fusesource.wikitext:textile-core:${wikitext.version}' :war -- compile 'org.fusesource.wikitext:tracwiki-core:${wikitext.version}' :war -- compile 'org.fusesource.wikitext:mediawiki-core:${wikitext.version}' :war -- compile 'org.fusesource.wikitext:confluence-core:${wikitext.version}' :war -- compile 'org.eclipse.jgit:org.eclipse.jgit:${jgit.version}' :war :fedclient :manager !junit -- compile 'org.eclipse.jgit:org.eclipse.jgit.http.server:${jgit.version}' :war :manager !junit -- compile 'org.bouncycastle:bcprov-jdk15on:${bouncycastle.version}' :war -- compile 'org.bouncycastle:bcmail-jdk15on:${bouncycastle.version}' :war -- compile 'org.bouncycastle:bcpkix-jdk15on:${bouncycastle.version}' :war -- compile 'org.apache.sshd:sshd-core:${sshd.version}' :war !org.easymock -- compile 'org.apache.mina:mina-core:${mina.version}' :war !org.easymock -- compile 'rome:rome:0.9' :war :manager :api -- compile 'com.google.code.gson:gson:2.3.1' :war :fedclient :manager :api -- compile 'org.codehaus.groovy:groovy-all:${groovy.version}' :war -- compile 'com.unboundid:unboundid-ldapsdk:2.3.8' :war -- compile 'org.apache.ivy:ivy:2.2.0' :war -- compile 'com.toedter:jcalendar:1.3.2' :authority -- compile 'org.apache.commons:commons-compress:1.4.1' :war -- compile 'commons-io:commons-io:2.2' :war -- compile 'com.force.api:force-partner-api:24.0.0' :war -- compile 'org.freemarker:freemarker:2.3.22' :war -- compile 'com.github.dblock.waffle:waffle-jna:1.7.3' :war -- compile 'org.kohsuke:libpam4j:1.8' :war -- compile 'args4j:args4j:2.0.29' :war :fedclient -- compile 'commons-codec:commons-codec:1.7' :war -- compile 'redis.clients:jedis:2.6.2' :war -- compile 'ro.fortsoft.pf4j:pf4j:0.9.0' :war -- compile 'org.apache.tika:tika-core:1.5' :war -- compile 'org.jsoup:jsoup:1.7.3' :war -- compile 'com.sun.activation:javax.activation:1.2.0' :war :manager :fedclient -- test 'junit:junit:4.12' -# Dependencies for Selenium web page testing -- test 'org.seleniumhq.selenium:selenium-java:${selenium.version}' @jar -- test 'org.seleniumhq.selenium:selenium-support:${selenium.version}' @jar -- test 'org.seleniumhq.selenium:selenium-firefox-driver:${selenium.version}' -- test 'org.mockito:mockito-core:1.10.19' -# Dependencies with the "build" scope are retrieved -# and injected into the Ant runtime classpath -- build 'org.jacoco:org.jacoco.ant:0.8.4' -- build 'org.parboiled:parboiled-java:1.3.1' diff --git a/build.xml b/build.xml deleted file mode 100644 index b4a98eb01..000000000 --- a/build.xml +++ /dev/null @@ -1,1277 +0,0 @@ - -