Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e2419af
re-writing accessors transformer using the new AGP API
nhachicha Jun 30, 2022
fbb9f08
cleanup
nhachicha Jun 30, 2022
8a3c558
Using Java 11
nhachicha Jul 10, 2022
a9a2575
Silencing Javadoc
nhachicha Jul 11, 2022
15a02d5
Project already evaluated
nhachicha Jul 11, 2022
207e5bc
WIP
nhachicha Jul 27, 2022
bf97b43
Fix sdk tests and all examples
rorbech Aug 10, 2022
13a9de5
Fix kotlin-extension tests
rorbech Aug 12, 2022
e1aeed2
Fix example projects according to latest updates
rorbech Aug 12, 2022
8ad69c6
Merge branch 'master' into nh/new_transformer
rorbech Aug 15, 2022
134a9bd
Revert annotations JDK target update
rorbech Aug 16, 2022
df23338
Fix processor test encoding issues
rorbech Aug 16, 2022
33081ef
Ensure JNI headers are generated before native build
rorbech Aug 16, 2022
3d780c8
Fix automatic dependency setup
rorbech Aug 22, 2022
f8940ce
Update to Core 12.5.1 and tests for raw queries with keyword field na…
rorbech Aug 29, 2022
1af01b7
Strip object server symbols from base artifacts
rorbech Aug 30, 2022
58a791e
Clean up
rorbech Aug 30, 2022
d895320
Merge branch 'master' into nh/new_transformer
rorbech Aug 30, 2022
8f17c24
Update version
rorbech Aug 30, 2022
eae54a1
Add CHANGELOG entry
rorbech Aug 31, 2022
98c6bbe
Update config.yml
geragray Sep 6, 2022
77225f1
Update config.yml
geragray Sep 6, 2022
a4f034b
Update config.yml
geragray Sep 6, 2022
535bfb2
Merge pull request #7718 from realm/geragray-patch-1
Sep 7, 2022
143fe75
Bump core 1.6.0 (#7717)
clementetb Sep 7, 2022
d7f3fda
Merge branch 'releases'
clementetb Sep 7, 2022
64a7000
Remove export compliance clause
nielsenko Sep 8, 2022
ba633a7
Merge pull request #7721 from realm/kn/clean-license
Sep 8, 2022
b057cab
Refactor EmailPasswordAuth tests to be less flaky. (#7723)
Sep 13, 2022
0357c11
Updates according to review comments
rorbech Sep 14, 2022
f7cde57
Merge branch 'master' into nh/new_transformer
rorbech Sep 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dependencies.list
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ REALM_CORE=11.14.0
MONGODB_REALM_SERVER=2022-01-17

# Common Android settings across projects
GRADLE_BUILD_TOOLS=7.1.0
GRADLE_BUILD_TOOLS=7.4.0-alpha05
ANDROID_BUILD_TOOLS=30.0.3
KOTLIN=1.5.31
KOTLIN_COROUTINES=1.5.2
KOTLIN=1.6.20
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably you can try 1.7 as is the latest stable available

KOTLIN_COROUTINES=1.6.0

# Common classpath dependencies
gradle=7.3.3
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7.5 is also available

zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
18 changes: 10 additions & 8 deletions gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.gradle.api.internal.project.ProjectInternal
buildscript {
def properties = new Properties()
properties.load(new FileInputStream("${rootDir}/../dependencies.list"))

ext.kotlin_version = properties.get('KOTLIN')
repositories {
jcenter()
maven {
Expand All @@ -15,10 +15,12 @@ buildscript {
dependencies {
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:${properties.get('BUILD_INFO_EXTRACTOR_GRADLE')}"
classpath "io.github.gradle-nexus:publish-plugin:${properties.get("GRADLE_NEXUS_PLUGIN")}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

apply plugin: 'groovy-gradle-plugin'
apply plugin: 'kotlin'
apply plugin: 'java-gradle-plugin'
apply plugin: 'maven-publish'

def props = new Properties()
Expand All @@ -33,8 +35,8 @@ repositories {
jcenter()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

group = 'io.realm'
version = file("${projectDir}/../version.txt").text.trim()
Expand Down Expand Up @@ -78,8 +80,8 @@ dependencies {
}

task generateVersionClass(type: Copy) {
from 'src/main/templates/Version.java'
into 'build/generated-src/main/java/io/realm'
from 'src/main/templates/Version.kt'
into 'build/generated-src/main/kotlin/io/realm'
filter(ReplaceTokens, tokens: [version: version])
outputs.upToDateWhen { false }
}
Expand All @@ -88,12 +90,12 @@ task generateVersionClass(type: Copy) {
sourceSets {
main {
java {
srcDir 'build/generated-src/main/java'
srcDirs += ['build/generated-src/main/kotlin', 'src/main/kotlin']
}
}
}

compileJava.dependsOn generateVersionClass
compileKotlin.dependsOn generateVersionClass

apply from: "${rootDir}/../mavencentral-publications.gradle"
apply from: "${rootDir}/../mavencentral-publish.gradle"
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
159 changes: 0 additions & 159 deletions gradle-plugin/src/main/groovy/io/realm/gradle/Realm.groovy

This file was deleted.

Loading