Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
briar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
694
Issues
694
List
Boards
Labels
Service Desk
Milestones
Merge Requests
17
Merge Requests
17
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
briar
briar
Commits
6f7f8b40
Commit
6f7f8b40
authored
Oct 17, 2017
by
akwizgran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgraded Gradle plugin and build tools.
parent
1a83b2c9
Pipeline
#716
passed with stage
in 6 minutes and 27 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
12 deletions
+12
-12
bramble-android/build.gradle
bramble-android/build.gradle
+2
-2
bramble-core/build.gradle
bramble-core/build.gradle
+1
-1
bramble-j2se/build.gradle
bramble-j2se/build.gradle
+1
-1
briar-android/build.gradle
briar-android/build.gradle
+3
-3
briar-api/build.gradle
briar-api/build.gradle
+1
-1
briar-core/build.gradle
briar-core/build.gradle
+2
-2
build.gradle
build.gradle
+1
-1
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
No files found.
bramble-android/build.gradle
View file @
6f7f8b40
...
...
@@ -7,7 +7,7 @@ apply plugin: 'de.undercouch.download'
android
{
compileSdkVersion
23
buildToolsVersion
"23.0.3"
buildToolsVersion
'25.0.0'
defaultConfig
{
minSdkVersion
14
...
...
@@ -24,7 +24,7 @@ android {
}
dependencies
{
compile
project
(
':bramble-core
'
)
compile
project
(
path:
':bramble-core'
,
configuration:
'default
'
)
compile
fileTree
(
dir:
'libs'
,
include:
'*.jar'
)
provided
'javax.annotation:jsr250-api:1.0'
}
...
...
bramble-core/build.gradle
View file @
6f7f8b40
...
...
@@ -10,7 +10,7 @@ targetCompatibility = 1.6
apply
plugin:
'witness'
dependencies
{
compile
project
(
':bramble-api
'
)
compile
project
(
path:
':bramble-api'
,
configuration:
'default
'
)
compile
'com.madgag.spongycastle:core:1.58.0.0'
compile
'com.h2database:h2:1.4.192'
// This is the last version that supports Java 1.6
compile
'org.bitlet:weupnp:0.1.4'
...
...
bramble-j2se/build.gradle
View file @
6f7f8b40
...
...
@@ -5,7 +5,7 @@ targetCompatibility = 1.7
apply
plugin:
'witness'
dependencies
{
compile
project
(
':bramble-core
'
)
compile
project
(
path:
':bramble-core'
,
configuration:
'default
'
)
compile
fileTree
(
dir:
'libs'
,
include:
'*.jar'
)
compile
'net.java.dev.jna:jna:4.4.0'
compile
'net.java.dev.jna:jna-platform:4.4.0'
...
...
briar-android/build.gradle
View file @
6f7f8b40
...
...
@@ -3,8 +3,8 @@ apply plugin: 'witness'
dependencies
{
def
supportVersion
=
'23.2.1'
compile
project
(
':briar-core
'
)
compile
project
(
':bramble-android
'
)
compile
project
(
path:
':briar-core'
,
configuration:
'default
'
)
compile
project
(
path:
':bramble-android'
,
configuration:
'default
'
)
compile
"com.android.support:support-v4:$supportVersion"
compile
(
"com.android.support:appcompat-v7:$supportVersion"
)
{
exclude
module:
'support-v4'
...
...
@@ -73,7 +73,7 @@ def getGitHash = { ->
android
{
compileSdkVersion
23
buildToolsVersion
"23.0.3"
buildToolsVersion
'25.0.0'
defaultConfig
{
minSdkVersion
14
...
...
briar-api/build.gradle
View file @
6f7f8b40
...
...
@@ -5,5 +5,5 @@ targetCompatibility = 1.6
apply
plugin:
'witness'
dependencies
{
compile
project
(
':bramble-api
'
)
compile
project
(
path:
':bramble-api'
,
configuration:
'default
'
)
}
briar-core/build.gradle
View file @
6f7f8b40
...
...
@@ -10,13 +10,13 @@ targetCompatibility = 1.6
apply
plugin:
'witness'
dependencies
{
compile
project
(
':briar-api
'
)
compile
project
(
path:
':briar-api'
,
configuration:
'default
'
)
compile
'com.rometools:rome:1.7.3'
compile
'org.jdom:jdom2:2.0.6'
compile
'com.squareup.okhttp3:okhttp:3.8.0'
compile
'org.jsoup:jsoup:1.10.3'
testCompile
project
(
':bramble-core
'
)
testCompile
project
(
path:
':bramble-core'
,
configuration:
'default
'
)
testCompile
project
(
path:
':bramble-core'
,
configuration:
'testOutput'
)
testCompile
project
(
path:
':bramble-api'
,
configuration:
'testOutput'
)
testCompile
'net.jodah:concurrentunit:0.4.2'
...
...
build.gradle
View file @
6f7f8b40
...
...
@@ -14,7 +14,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:2.
2.2
'
classpath
'com.android.tools.build:gradle:2.
3.3
'
classpath
'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath
'de.undercouch:gradle-download-task:3.2.0'
classpath
files
(
'libs/gradle-witness.jar'
)
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
6f7f8b40
...
...
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
2.14.1
-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
3.3
-all.zip
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment