diff --git a/briar-android/.classpath b/briar-android/.classpath deleted file mode 100644 index 589027c42d4a4275f0079c07808ca4b1a416689b..0000000000000000000000000000000000000000 --- a/briar-android/.classpath +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src"/> - <classpathentry kind="src" path="gen"/> - <classpathentry combineaccessrules="false" exported="true" kind="src" path="/briar-core"/> - <classpathentry combineaccessrules="false" exported="true" kind="src" path="/briar-api"/> - <classpathentry exported="true" kind="lib" path="/briar-api/libs/guice-3.0-no_aop.jar"/> - <classpathentry exported="true" kind="lib" path="/briar-api/libs/javax.inject.jar"/> - <classpathentry exported="true" kind="lib" path="/briar-core/libs/h2small-1.4.190.jar"/> - <classpathentry exported="true" kind="lib" path="/briar-core/libs/weupnp-0.1.3-SNAPSHOT-briar.jar"/> - <classpathentry exported="true" kind="lib" path="/briar-core/libs/spongy-core-1.53.jar"/> - <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> - <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> - <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> - <classpathentry kind="output" path="bin/classes"/> -</classpath> diff --git a/briar-android/.project b/briar-android/.project deleted file mode 100644 index 2483e2c2211f89fbe6935d6c0bd17583a89d5c64..0000000000000000000000000000000000000000 --- a/briar-android/.project +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>briar-android</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>com.android.ide.eclipse.adt.ApkBuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>com.android.ide.eclipse.adt.AndroidNature</nature> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/briar-android/ant.properties b/briar-android/ant.properties deleted file mode 100644 index c5281df27fdb7b4ae4eb400ef4f1f9648dc209f0..0000000000000000000000000000000000000000 --- a/briar-android/ant.properties +++ /dev/null @@ -1,21 +0,0 @@ -# This file is used to override default values used by the Ant build system. -# -# This file must be checked into Version Control Systems, as it is -# integral to the build system of your project. - -# This file is only used by the Ant script. - -# You can use this to override default values such as -# 'source.dir' for the location of your java source folder and -# 'out.dir' for the location of your output folder. - -source.dir=../briar-api/src:../briar-core/src:src -api.jar.libs.dir=../briar-api/libs -core.jar.libs.dir=../briar-core/libs - -# You can also use it define how the release builds are signed by declaring -# the following properties: -# 'key.store' for the location of your keystore and -# 'key.alias' for the name of the key to use. -# The password will be asked during the build when you use the 'release' target. - diff --git a/briar-android/build.xml b/briar-android/build.xml deleted file mode 100644 index 33f16589731abdab668d919ffc731cd4f860ab10..0000000000000000000000000000000000000000 --- a/briar-android/build.xml +++ /dev/null @@ -1,92 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project name="Briar" default="help"> - - <!-- The local.properties file is created and updated by the 'android' tool. - It contains the path to the SDK. It should *NOT* be checked into - Version Control Systems. --> - <property file="local.properties" /> - - <!-- The ant.properties file can be created by you. It is only edited by the - 'android' tool to add properties to it. - This is the place to change some Ant specific build properties. - Here are some properties you may want to change/update: - - source.dir - The name of the source directory. Default is 'src'. - out.dir - The name of the output directory. Default is 'bin'. - - For other overridable properties, look at the beginning of the rules - files in the SDK, at tools/ant/build.xml - - Properties related to the SDK location or the project target should - be updated using the 'android' tool with the 'update' action. - - This file is an integral part of the build system for your - application and should be checked into Version Control Systems. - - --> - <property file="ant.properties" /> - - <!-- if sdk.dir was not set from one of the property file, then - get it from the ANDROID_HOME env var. - This must be done before we load project.properties since - the proguard config can use sdk.dir --> - <property environment="env" /> - <condition property="sdk.dir" value="${env.ANDROID_HOME}"> - <isset property="env.ANDROID_HOME" /> - </condition> - - <!-- The project.properties file is created and updated by the 'android' - tool, as well as ADT. - - This contains project specific properties such as project target, and library - dependencies. Lower level build properties are stored in ant.properties - (or in .classpath for Eclipse projects). - - This file is an integral part of the build system for your - application and should be checked into Version Control Systems. --> - <loadproperties srcFile="project.properties" /> - - <!-- quick check on sdk.dir --> - <fail - message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable." - unless="sdk.dir" - /> - - <!-- - Import per project custom build rules if present at the root of the project. - This is the place to put custom intermediary targets such as: - -pre-build - -pre-compile - -post-compile (This is typically used for code obfuscation. - Compiled code location: ${out.classes.absolute.dir} - If this is not done in place, override ${out.dex.input.absolute.dir}) - -post-package - -post-build - -pre-clean - --> - <import file="custom_rules.xml" optional="true" /> - - <!-- Import the actual build file. - - To customize existing targets, there are two options: - - Customize only one target: - - copy/paste the target into this file, *before* the - <import> task. - - customize it to your needs. - - Customize the whole content of build.xml - - copy/paste the content of the rules files (minus the top node) - into this file, replacing the <import> task. - - customize to your needs. - - *********************** - ****** IMPORTANT ****** - *********************** - In all cases you must update the value of version-tag below to read 'custom' instead of an integer, - in order to avoid having your file be overridden by tools such as "android update project" - --> - <!-- version-tag: 1 --> - <import file="${sdk.dir}/tools/ant/build.xml" /> - -</project> diff --git a/briar-android/custom_rules.xml b/briar-android/custom_rules.xml deleted file mode 100644 index 74ddfaeb08bd81f7fcf7aecdb1da15d15db34557..0000000000000000000000000000000000000000 --- a/briar-android/custom_rules.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version='1.0' encoding='UTF-8'?> -<project name='Briar Custom Rules' default='help'> -<target name='-pre-compile'> - <path id='project.all.jars.path'> - <path path='${toString:project.all.jars.path}'/> - <fileset dir='${api.jar.libs.dir}'> - <exclude name='android.jar'/> - <include name='*.jar'/> - </fileset> - <fileset dir='${core.jar.libs.dir}'> - <include name='*.jar'/> - </fileset> - <fileset dir='${jar.libs.dir}'> - <include name='*.jar'/> - </fileset> - </path> -</target> -</project> diff --git a/briar-android/lint.xml b/briar-android/lint.xml deleted file mode 100644 index 48d75f9559bc06fce46f5a71314f571ab4bf4bca..0000000000000000000000000000000000000000 --- a/briar-android/lint.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<lint> - <issue id="UseSparseArrays" severity="ignore" /> -</lint> \ No newline at end of file diff --git a/briar-android/proguard-project.txt b/briar-android/proguard-project.txt deleted file mode 100644 index f2fe1559a217865a5454add526dcc446f892385b..0000000000000000000000000000000000000000 --- a/briar-android/proguard-project.txt +++ /dev/null @@ -1,20 +0,0 @@ -# To enable ProGuard in your project, edit project.properties -# to define the proguard.config property as described in that file. -# -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in ${sdk.dir}/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the ProGuard -# include property in project.properties. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} diff --git a/briar-android/project.properties b/briar-android/project.properties deleted file mode 100644 index 00cf62bacc1166a9aa7eee3bd6e084a52c82fa07..0000000000000000000000000000000000000000 --- a/briar-android/project.properties +++ /dev/null @@ -1,14 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must be checked in Version Control Systems. -# -# To customize properties used by the Ant build system edit -# "ant.properties", and override values to adapt the script to your -# project structure. -# -# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): -#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt - -# Project target. -target=android-22 diff --git a/briar-api/.classpath b/briar-api/.classpath deleted file mode 100644 index 326b310d1bd24e8dcd7e34021616b6ac08a72b0e..0000000000000000000000000000000000000000 --- a/briar-api/.classpath +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src"/> - <classpathentry kind="lib" path="libs/guice-3.0-no_aop.jar"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> - <classpathentry kind="output" path="bin"/> -</classpath> diff --git a/briar-api/.project b/briar-api/.project deleted file mode 100644 index f5754852336be20c480ab29b7ce17a4ccf851cb7..0000000000000000000000000000000000000000 --- a/briar-api/.project +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>briar-api</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/briar-api/build.xml b/briar-api/build.xml deleted file mode 100644 index 7da1cd1be9eb3a82f935a520755f515551155829..0000000000000000000000000000000000000000 --- a/briar-api/build.xml +++ /dev/null @@ -1,20 +0,0 @@ -<project name='briar-api' default='compile'> - <fileset id='api-jars' dir='libs'> - <include name='*.jar'/> - </fileset> - <path id='api-classes'> - <pathelement location='build'/> - </path> - <target name='clean'> - <delete dir='build'/> - </target> - <target name='compile'> - <mkdir dir='build'/> - <javac srcdir='src' destdir='build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='api-jars'/> - </classpath> - </javac> - </target> -</project> diff --git a/briar-core/.classpath b/briar-core/.classpath deleted file mode 100644 index 77c6f54614fcaa5cc5fb761b8f343f119becd68e..0000000000000000000000000000000000000000 --- a/briar-core/.classpath +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src"/> - <classpathentry combineaccessrules="false" kind="src" path="/briar-api"/> - <classpathentry kind="lib" path="/briar-api/libs/guice-3.0-no_aop.jar"/> - <classpathentry kind="lib" path="/briar-api/libs/javax.inject.jar"/> - <classpathentry kind="lib" path="libs/h2small-1.4.190.jar"/> - <classpathentry kind="lib" path="libs/weupnp-0.1.3-SNAPSHOT-briar.jar"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> - <classpathentry kind="lib" path="libs/spongy-core-1.53.jar"/> - <classpathentry kind="output" path="bin"/> -</classpath> diff --git a/briar-core/.project b/briar-core/.project deleted file mode 100644 index 8a586cd040b33993693748719915b0c072b27b5e..0000000000000000000000000000000000000000 --- a/briar-core/.project +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>briar-core</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/briar-core/build.xml b/briar-core/build.xml deleted file mode 100644 index 8a3499f8b57a368dc1b776c4960e734f6c87ffe6..0000000000000000000000000000000000000000 --- a/briar-core/build.xml +++ /dev/null @@ -1,34 +0,0 @@ -<project name='briar-core' default='compile'> - <fileset id='api-jars' dir='../briar-api/libs'> - <include name='*.jar'/> - </fileset> - <fileset id='core-jars' dir='libs'> - <include name='*.jar'/> - </fileset> - <path id='api-classes'> - <pathelement location='../briar-api/build'/> - </path> - <target name='clean'> - <delete dir='../briar-api/build'/> - <delete dir='build'/> - </target> - <target name='compile'> - <mkdir dir='../briar-api/build'/> - <javac srcdir='../briar-api/src' - destdir='../briar-api/build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='api-jars'/> - </classpath> - </javac> - <mkdir dir='build'/> - <javac srcdir='src' destdir='build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='api-classes'/> - </classpath> - </javac> - </target> -</project> diff --git a/briar-desktop/.classpath b/briar-desktop/.classpath deleted file mode 100644 index c156924c0e1f986dd9c7a4d67b4574b52a1afa8a..0000000000000000000000000000000000000000 --- a/briar-desktop/.classpath +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src"/> - <classpathentry combineaccessrules="false" kind="src" path="/briar-api"/> - <classpathentry combineaccessrules="false" kind="src" path="/briar-core"/> - <classpathentry kind="lib" path="/briar-api/libs/guice-3.0-no_aop.jar"/> - <classpathentry kind="lib" path="libs/bluecove-2.1.1-SNAPSHOT-briar.jar"/> - <classpathentry kind="lib" path="libs/bluecove-gpl-2.1.1-SNAPSHOT.jar"/> - <classpathentry kind="lib" path="libs/jnotify-0.94.jar"/> - <classpathentry kind="lib" path="libs/jssc-0.9-briar.jar" sourcepath="libs/source/jssc-0.9-briar-source.jar"/> - <classpathentry kind="lib" path="libs/jna-4.1.0.jar"/> - <classpathentry kind="lib" path="libs/jna-platform-4.1.0.jar"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> - <classpathentry kind="output" path="bin"/> -</classpath> diff --git a/briar-desktop/.project b/briar-desktop/.project deleted file mode 100644 index 7ecedd713853c38adb1a29270cae4569246eebcd..0000000000000000000000000000000000000000 --- a/briar-desktop/.project +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>briar-desktop</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/briar-desktop/build.xml b/briar-desktop/build.xml deleted file mode 100644 index 80c40d8f579fe66d8cfa3ff7513c91ef7fc55842..0000000000000000000000000000000000000000 --- a/briar-desktop/build.xml +++ /dev/null @@ -1,53 +0,0 @@ -<project name='briar-core' default='compile'> - <fileset id='api-jars' dir='../briar-api/libs'> - <include name='*.jar'/> - </fileset> - <fileset id='core-jars' dir='../briar-core/libs'> - <include name='*.jar'/> - </fileset> - <fileset id='desktop-jars' dir='libs'> - <include name='*.jar'/> - </fileset> - <path id='api-classes'> - <pathelement location='../briar-api/build'/> - </path> - <path id='core-classes'> - <pathelement location='../briar-core/build'/> - </path> - <target name='clean'> - <delete dir='../briar-api/build'/> - <delete dir='../briar-core/build'/> - <delete dir='build'/> - </target> - <target name='compile'> - <mkdir dir='../briar-api/build'/> - <javac srcdir='../briar-api/src' - destdir='../briar-api/build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='api-jars'/> - </classpath> - </javac> - <mkdir dir='../briar-core/build'/> - <javac srcdir='../briar-core/src' - destdir='../briar-core/build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='api-classes'/> - </classpath> - </javac> - <mkdir dir='build'/> - <javac srcdir='src' destdir='build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='desktop-jars'/> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='core-classes'/> - <path refid='api-classes'/> - </classpath> - </javac> - </target> -</project> diff --git a/briar-tests/.classpath b/briar-tests/.classpath deleted file mode 100644 index 86bc550fdbf9f8a030786ed2e82e51ab8f208adc..0000000000000000000000000000000000000000 --- a/briar-tests/.classpath +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src"/> - <classpathentry combineaccessrules="false" kind="src" path="/briar-api"/> - <classpathentry combineaccessrules="false" kind="src" path="/briar-core"/> - <classpathentry combineaccessrules="false" kind="src" path="/briar-desktop"/> - <classpathentry kind="lib" path="/briar-api/libs/guice-3.0-no_aop.jar"/> - <classpathentry kind="lib" path="/briar-desktop/libs/jnotify-0.94.jar"/> - <classpathentry kind="lib" path="/briar-desktop/libs/jssc-0.9-briar.jar" sourcepath="/briar-desktop/libs/source/jssc-0.9-briar-source.jar"/> - <classpathentry kind="lib" path="libs/hamcrest-core-1.1.jar"/> - <classpathentry kind="lib" path="libs/hamcrest-library-1.1.jar"/> - <classpathentry kind="lib" path="libs/jmock-2.5.1.jar"/> - <classpathentry kind="lib" path="libs/junit-4.9b3.jar"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> - <classpathentry kind="lib" path="/briar-core/libs/spongy-core-1.53.jar"/> - <classpathentry kind="output" path="bin"/> -</classpath> diff --git a/briar-tests/.project b/briar-tests/.project deleted file mode 100644 index fd15c6bba7eaa47b3b2c282d8ef8cf6fd534eecc..0000000000000000000000000000000000000000 --- a/briar-tests/.project +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>briar-tests</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/briar-tests/build.xml b/briar-tests/build.xml deleted file mode 100644 index 408832ae8b3c16c6543378cffc8f1e64198945fa..0000000000000000000000000000000000000000 --- a/briar-tests/build.xml +++ /dev/null @@ -1,142 +0,0 @@ -<project name='briar-tests' default='test'> - <fileset id='api-jars' dir='../briar-api/libs'> - <include name='*.jar'/> - </fileset> - <fileset id='core-jars' dir='../briar-core/libs'> - <include name='*.jar'/> - </fileset> - <fileset id='desktop-jars' dir='../briar-desktop/libs'> - <include name='*.jar'/> - </fileset> - <fileset id='test-jars' dir='libs'> - <include name='*.jar'/> - </fileset> - <path id='api-classes'> - <pathelement location='../briar-api/build'/> - </path> - <path id='core-classes'> - <pathelement location='../briar-core/build'/> - </path> - <path id='desktop-classes'> - <pathelement location='../briar-desktop/build'/> - </path> - <path id='test-classes'> - <pathelement location='build'/> - </path> - <target name='clean'> - <delete dir='../briar-api/build'/> - <delete dir='../briar-core/build'/> - <delete dir='../briar-desktop/build'/> - <delete dir='build'/> - <delete dir='test.tmp'/> - </target> - <target name='compile'> - <mkdir dir='../briar-api/build'/> - <javac srcdir='../briar-api/src' - destdir='../briar-api/build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='api-jars'/> - </classpath> - </javac> - <mkdir dir='../briar-core/build'/> - <javac srcdir='../briar-core/src' - destdir='../briar-core/build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='api-classes'/> - </classpath> - </javac> - <mkdir dir='../briar-desktop/build'/> - <javac srcdir='../briar-desktop/src' - destdir='../briar-desktop/build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='desktop-jars'/> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='core-classes'/> - <path refid='api-classes'/> - </classpath> - </javac> - <mkdir dir='build'/> - <javac srcdir='src' destdir='build' source='1.6' target='1.6' - includeantruntime='false' debug='off'> - <classpath> - <fileset refid='test-jars'/> - <fileset refid='desktop-jars'/> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='desktop-classes'/> - <path refid='core-classes'/> - <path refid='api-classes'/> - </classpath> - </javac> - </target> - <target name='test' depends='compile'> - <junit printsummary='withOutAndErr' fork='yes' forkmode='once'> - <assertions> - <enable/> - </assertions> - <classpath> - <fileset refid='test-jars'/> - <fileset refid='desktop-jars'/> - <fileset refid='core-jars'/> - <fileset refid='api-jars'/> - <path refid='test-classes'/> - <path refid='desktop-classes'/> - <path refid='core-classes'/> - <path refid='api-classes'/> - </classpath> - <sysproperty key='java.library.path' value='../briar-desktop/libs'/> - <test name='org.briarproject.LockFairnessTest'/> - <test name='org.briarproject.ProtocolIntegrationTest'/> - <test name='org.briarproject.crypto.Blake2sDigestTest'/> - <test name='org.briarproject.crypto.EllipticCurveMultiplicationTest'/> - <test name='org.briarproject.crypto.FortunaGeneratorTest'/> - <test name='org.briarproject.crypto.FortunaSecureRandomTest'/> - <test name='org.briarproject.crypto.KeyAgreementTest'/> - <test name='org.briarproject.crypto.KeyDerivationTest'/> - <test name='org.briarproject.crypto.KeyEncodingAndParsingTest'/> - <test name="org.briarproject.crypto.PasswordBasedKdfTest"/> - <test name="org.briarproject.crypto.PasswordStrengthEstimatorImplTest"/> - <test name='org.briarproject.crypto.StreamDecrypterImplTest'/> - <test name='org.briarproject.crypto.StreamEncrypterImplTest'/> - <test name='org.briarproject.crypto.XSalsa20Poly1305AuthenticatedCipherTest'/> - <test name='org.briarproject.data.BdfReaderImplTest'/> - <test name='org.briarproject.data.BdfWriterImplTest'/> - <test name='org.briarproject.data.MetadataEncoderParserImplTest'/> - <test name='org.briarproject.db.BasicH2Test'/> - <test name='org.briarproject.db.DatabaseComponentImplTest'/> - <test name='org.briarproject.db.ExponentialBackoffTest'/> - <test name='org.briarproject.db.H2DatabaseTest'/> - <test name='org.briarproject.lifecycle.ShutdownManagerImplTest'/> - <test name='org.briarproject.lifecycle.WindowsShutdownManagerImplTest'/> - <test name='org.briarproject.plugins.ConnectionRegistryImplTest'/> - <test name='org.briarproject.plugins.PluginManagerImplTest'/> - <test name='org.briarproject.plugins.file.LinuxRemovableDriveFinderTest'/> - <test name='org.briarproject.plugins.file.MacRemovableDriveFinderTest'/> - <test name='org.briarproject.plugins.file.PollingRemovableDriveMonitorTest'/> - <test name='org.briarproject.plugins.file.RemovableDrivePluginTest'/> - <test name='org.briarproject.plugins.file.UnixRemovableDriveMonitorTest'/> - <test name='org.briarproject.plugins.modem.CountryCodesTest'/> - <test name='org.briarproject.plugins.modem.ModemPluginTest'/> - <test name='org.briarproject.plugins.tcp.LanTcpPluginTest'/> - <test name='org.briarproject.sync.ConstantsTest'/> - <test name='org.briarproject.sync.PacketReaderImplTest'/> - <test name='org.briarproject.sync.SimplexMessagingIntegrationTest'/> - <test name='org.briarproject.sync.SimplexOutgoingSessionTest'/> - <test name='org.briarproject.system.LinuxSeedProviderTest'/> - <test name='org.briarproject.transport.KeyManagerImplTest'/> - <test name='org.briarproject.transport.ReorderingWindowTest'/> - <test name='org.briarproject.transport.StreamReaderImplTest'/> - <test name='org.briarproject.transport.StreamWriterImplTest'/> - <test name='org.briarproject.transport.TransportIntegrationTest'/> - <test name='org.briarproject.transport.TransportKeyManagerTest'/> - <test name='org.briarproject.util.ByteUtilsTest'/> - <test name='org.briarproject.util.StringUtilsTest'/> - </junit> - </target> -</project>