mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-20 14:49:53 +01:00
Use Java 1.6 instead of 1.5. We no longer aim to support OS X 10.4.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
|
||||
<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="libs/h2small-1.3.170.jar"/>
|
||||
<classpathentry kind="lib" path="libs/javax.inject.jar"/>
|
||||
<classpathentry kind="lib" path="libs/sc-light-jdk15on-1.47.0.3-SNAPSHOT.jar" sourcepath="libs/source/sc-light-jdk15on-1.47.0.3-SNAPSHOT-source.jar"/>
|
||||
<classpathentry kind="lib" path="libs/weupnp-0.1.1.jar"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
||||
1
briar-core/.gitignore
vendored
1
briar-core/.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
bin
|
||||
build
|
||||
.settings
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
#Wed Dec 05 20:57:54 GMT 2012
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
|
||||
org.eclipse.jdt.core.compiler.compliance=1.5
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.source=1.5
|
||||
@@ -15,14 +15,14 @@
|
||||
<target name='compile'>
|
||||
<mkdir dir='../briar-api/build'/>
|
||||
<javac srcdir='../briar-api/src'
|
||||
destdir='../briar-api/build' source='1.5' target='1.5'
|
||||
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.5' target='1.5'
|
||||
<javac srcdir='src' destdir='build' source='1.6' target='1.6'
|
||||
includeantruntime='false' debug='off'>
|
||||
<classpath>
|
||||
<fileset refid='core-jars'/>
|
||||
|
||||
Reference in New Issue
Block a user