mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-18 05:39:53 +01:00
Merge branch 'remove-old-build-files' into 'master'
Remove Ant build files and Eclipse project files. No longer needed for building or testing, and a pain to maintain. See merge request !87
This commit is contained in:
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user